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.light; // w w w . j a v a 2s .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 18/01/15. */ public class ImageDrawerHeader extends MaterialNavigationDrawer { @Override public void init(Bundle savedInstanceState) { // set the header image this.setDrawerHeaderImage(R.drawable.mat2); // create sections 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))); } }