Back to project page Joetz-Android-V2.
The source code is released under:
GNU General Public License
If you think the Android project Joetz-Android-V2 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.example.jens.myapplication.main; /* w w w . j a v a 2s . co m*/ /** * Created by Jens on 13/11/2014. */ public interface NavDrawerItem { public int getId(); public String getLabel(); public int getType(); public boolean isEnabled(); public boolean updateActionBarTitle(); }