Android Open Source - android-drawerlayout Spinner Item






From Project

Back to project page android-drawerlayout.

License

The source code is released under:

MIT License

If you think the Android project android-drawerlayout 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.tutecentral.navigationdrawer;
//from w  w  w. j  av a  2  s .  c  o  m
public class SpinnerItem {

  int drawableResID;
  String name;
  String email;
  
  

  public SpinnerItem(int drawableResID, String name, String email) {
    super();
    this.drawableResID = drawableResID;
    this.name = name;
    this.email = email;
  }
  
  
  public int getDrawableResID() {
    return drawableResID;
  }
  public void setDrawableResID(int drawableResID) {
    this.drawableResID = drawableResID;
  }
  public String getName() {
    return name;
  }
  public void setName(String name) {
    this.name = name;
  }
  public String getEmail() {
    return email;
  }
  public void setEmail(String email) {
    this.email = email;
  }
  
  
  
}




Java Source Code List

com.example.android.navigationdrawerexample.MainActivity.java
com.example.drawersample.MainActivity.java
com.tutecentral.navigationdrawer.CustomDrawerAdapter.java
com.tutecentral.navigationdrawer.CustomDrawerAdapter.java
com.tutecentral.navigationdrawer.CustomSpinnerAdapter.java
com.tutecentral.navigationdrawer.DrawerItem.java
com.tutecentral.navigationdrawer.DrawerItem.java
com.tutecentral.navigationdrawer.FragmentOne.java
com.tutecentral.navigationdrawer.FragmentOne.java
com.tutecentral.navigationdrawer.FragmentThree.java
com.tutecentral.navigationdrawer.FragmentThree.java
com.tutecentral.navigationdrawer.FragmentTwo.java
com.tutecentral.navigationdrawer.FragmentTwo.java
com.tutecentral.navigationdrawer.MainActivity.java
com.tutecentral.navigationdrawer.MainActivity.java
com.tutecentral.navigationdrawer.SpinnerItem.java