Created
October 7, 2017 12:43
-
-
Save viztushar/6323c383c301b3f3dfb8eb80d57134f3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AccountHeader header = new AccountHeaderBuilder().withActivity(this) | |
.withAccountHeader(R.layout.header).build(); | |
new DrawerBuilder() | |
.withActivity(this) | |
.withToolbar(mToolbar) | |
.withAccountHeader(header) | |
.addDrawerItems(item,item2,new DividerDrawerItem(),item3,item4,item5,item6,new DividerDrawerItem(), | |
item7) | |
.withActionBarDrawerToggle(true) | |
.withTranslucentNavigationBar(true) | |
.withTranslucentStatusBar(true) | |
.withSliderBackgroundColor(getResources().getColor(R.color.colorPrimary)) | |
.build(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
main