Android Open Source - DrawerView Drawer Item






From Project

Back to project page DrawerView.

License

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.

Java Source Code

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




Java Source Code List

com.brimanning.drawerview.MainActivity.java
com.brimanning.drawerview.MainFragment.java
com.brimanning.drawerview.ui.DrawerItem.java
com.brimanning.drawerview.ui.DrawerListAdapter.java