Back to project page BlurNavigationDrawer.
The source code is released under:
Apache License
If you think the Android project BlurNavigationDrawer listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.charbgr.BlurNavigationDrawer.sample.app; /*from ww w. j av a 2 s.c o m*/ import android.graphics.drawable.Drawable; /** * Created by charbgr on 8/30/14. */ public class Movie { private Drawable drawable; private String title; public Movie(Drawable drawable, String title) { this.drawable = drawable; this.title = title; } public Drawable getDrawable() { return drawable; } public String getTitle() { return title; } }