Android Open Source - NavigationDrawerExample Nav Drawer Item






From Project

Back to project page NavigationDrawerExample.

License

The source code is released under:

Apache License

If you think the Android project NavigationDrawerExample 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 net.qiwary.navigationdrawerexample.model;
/* w ww.j  a  va2  s.  c  o m*/
/**
 * Created by avew on 12/5/14.
 */
public class NavDrawerItem {

  private String title;
  private int icon;
  private String count = "0";
  // boolean to set visiblity of the counter
  private boolean isCounterVisible = false;

  public NavDrawerItem() {
  }

  public NavDrawerItem(String title, int icon) {
    this.title = title;
    this.icon = icon;
  }

  public NavDrawerItem(String title, int icon, boolean isCounterVisible, String count) {
    this.title = title;
    this.icon = icon;
    this.isCounterVisible = isCounterVisible;
    this.count = count;
  }

  public String getTitle() {
    return this.title;
  }

  public int getIcon() {
    return this.icon;
  }

  public String getCount() {
    return this.count;
  }

  public boolean getCounterVisibility() {
    return this.isCounterVisible;
  }

  public void setTitle(String title) {
    this.title = title;
  }

  public void setIcon(int icon) {
    this.icon = icon;
  }

  public void setCount(String count) {
    this.count = count;
  }

  public void setCounterVisibility(boolean isCounterVisible) {
    this.isCounterVisible = isCounterVisible;
  }
}




Java Source Code List

net.qiwary.navigationdrawerexample.ApplicationTest.java
net.qiwary.navigationdrawerexample.MainActivity.java
net.qiwary.navigationdrawerexample.adapter.SlideMenuAdapter.java
net.qiwary.navigationdrawerexample.adapter.TabsPagerAdapter.java
net.qiwary.navigationdrawerexample.fragment.AboutFragment.java
net.qiwary.navigationdrawerexample.fragment.HelpFragment.java
net.qiwary.navigationdrawerexample.fragment.HomeFragment.java
net.qiwary.navigationdrawerexample.fragment.TabsDraftFragment.java
net.qiwary.navigationdrawerexample.model.NavDrawerItem.java