2
For starters, I suggest you read the documentation android official of how the implementation works.
If you are looking for a quick and easy implementation, I suggest using the library Material Drawer contained in this link. Just add in your build.gradle
dependence:
compile('com.mikepenz:materialdrawer:5.0.9@aar') {
transitive = true
}
To use add to your Activity:
new DrawerBuilder().withActivity(this).build();
This way you don’t need to create menu layout and items manually, the library does it for you automatically. In the library link contains the instructions on how to use, but as I pointed out at the beginning of the reply, I suggest visiting the official documentation for you to learn how the menu is done.
Drawer navigation
– user28595
If you also want to learn how to make your own: http://www.rafaeltoledo.net/criando-um-navigation-drawer-customizado-no-android/
– user28595
this same vlw! puts in the answer that I select you as the correct answer.
– daniel12345smith