Back to project page unmp.
The source code is released under:
MIT License
If you think the Android project unmp 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.parnswir.unmp; //from w w w. j a va2 s.c o m import java.util.ArrayList; import android.support.v4.app.ActionBarDrawerToggle; import android.support.v4.widget.DrawerLayout; import android.widget.ListView; import android.widget.RelativeLayout; import com.parnswir.unmp.core.C; import com.parnswir.unmp.core.ProjectResources.FragmentProperties; public class DrawerState { public ArrayList<String> drawerItems = new ArrayList<String>(); public DrawerLayout mDrawerLayout = null; public RelativeLayout mDrawer = null; public ListView mDrawerList = null; public ActionBarDrawerToggle mDrawerToggle = null; public boolean isInitialized = false; public DrawerState() { for (FragmentProperties fragment : C.FRAGMENTS) { drawerItems.add(fragment.title); } } }