Android Open Source - android-navigation-drawer-example Item






From Project

Back to project page android-navigation-drawer-example.

License

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.

Java Source Code

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;
    }
}




Java Source Code List

com.bnsantos.navigationdrawer.ApplicationTest.java
com.bnsantos.navigationdrawer.Utils.java
com.bnsantos.navigationdrawer.activity.MainActivity.java
com.bnsantos.navigationdrawer.adapter.ItemAdapter.java
com.bnsantos.navigationdrawer.adapter.ViewPagerAdapter.java
com.bnsantos.navigationdrawer.fragment.CenterFragment.java
com.bnsantos.navigationdrawer.fragment.LeftFragment.java
com.bnsantos.navigationdrawer.fragment.RightFragment.java
com.bnsantos.navigationdrawer.model.Item.java