Back to project page MaterialNavigationDrawer.
The source code is released under:
Apache License
If you think the Android project MaterialNavigationDrawer 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 it.neokree.example.backpattern; /* w ww . j a v a2s .com*/ import android.content.Intent; import android.graphics.Color; import android.os.Bundle; import it.neokree.example.R; import it.neokree.example.mockedActivity.Settings; import it.neokree.example.mockedFragments.FragmentButton; import it.neokree.example.mockedFragments.FragmentIndex; import it.neokree.materialnavigationdrawer.MaterialNavigationDrawer; /** * Created by neokree on 14/02/15. */ public class BackToFirst extends MaterialNavigationDrawer { @Override public void init(Bundle savedInstanceState) { this.addSection(newSection("Section 1", new FragmentIndex())); this.addSection(newSection("Section 2",new FragmentIndex())); this.addSection(newSection("Section 3", R.drawable.ic_mic_white_24dp,new FragmentButton()).setSectionColor(Color.parseColor("#9c27b0"))); this.addSection(newSection("Section",R.drawable.ic_hotel_grey600_24dp,new FragmentButton()).setSectionColor(Color.parseColor("#03a9f4"))); // create bottom section this.addBottomSection(newSection("Bottom Section",R.drawable.ic_settings_black_24dp,new Intent(this,Settings.class))); // add pattern this.setBackPattern(MaterialNavigationDrawer.BACKPATTERN_BACK_TO_FIRST); } }