Back to project page oidarSample.
The source code is released under:
GNU General Public License
If you think the Android project oidarSample 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.oidar.fragment.base; /* www .j a v a 2 s . c o m*/ import android.support.v4.app.Fragment; /** * A class which all the fragments for the drawer extends. */ public abstract class DrawerFragment extends Fragment { /** * Get the tag for the currently displayed fragment */ public abstract String getFragmentTag(); }