Back to project page android-drawerlayout.
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.
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; } }