Back to project page ScreamDroid.
The source code is released under:
GNU General Public License
If you think the Android project ScreamDroid 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 io.lxl.screamdroid.view; /* w ww . j a v a 2 s.co m*/ /** * Created by pschmitt on 11/18/13. */ public class DrawerItem { private String mTitle; private int mDrawableResID; public DrawerItem(String title, int drawableResID) { mTitle = title; mDrawableResID = drawableResID; } public String getTitle() { return mTitle; } public int getDrawableResID() { return mDrawableResID; } }