Back to project page DrawerView.
The source code is released under:
MIT License
If you think the Android project DrawerView 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.brimanning.drawerview.ui; /*from www .ja va 2 s . c o m*/ import android.graphics.Bitmap; public class DrawerItem { public DrawerItem(Bitmap image, String label) { this.image = image; this.label = label; } private Bitmap image; public Bitmap getImage() { return image; } private String label; public String getLabel() { return label; } }