Back to project page android-navigation-drawer-example.
The source code is released under:
Apache License
If you think the Android project android-navigation-drawer-example 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.bnsantos.navigationdrawer.model; // w w w. j a v a2s.c o m /** * Created by bruno on 30/01/15. */ public class Item { public final int[] res; public final String text; public Item(String text, int[] res) { this.res = res; this.text = text; } }