Back to project page AndroidAdvancedDemos.
The source code is released under:
MIT License
If you think the Android project AndroidAdvancedDemos 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.krieger.training.androidadvanceddemos.entities; // w ww. ja v a 2 s . c o m import android.graphics.drawable.Drawable; public class DrawerItem { public Drawable icon; public String title; public DrawerItem(Drawable icon, String title) { this.icon = icon; this.title = title; } }