my name Adam,
I followed this tutorial https://www.youtube.com/watch?v=rs4LW3GxOgE to create an navigation drawer, everything is working fine, as in, I am able to slide the drawer in and out. The problem I am having is, I want to link each item in the drawer to different activities. For example, I have a button/item in my itemview called "Main Menu", I want to link this item/button to a activity called Home Screen. Similarly, I have another item/button called "Videos" in the itemview and I want to link this to a activity called My videos and so on, with all my buttons, I have 5 buttons in total.
Sorry, I won't be able to provide any screenshots of my work because my work is on my laptop and my dad has borrowed it of me for few days but I have followed the above tutorial, so if you watch that, you will understand what I am talking about.
Basically, I want to link each item/button in my itemview to a corresponding activity. few notes;
- My items/buttons in the itemview are stored in an array in my string xlm.
- I am unable to extend Activity on my main class, where all the code is for the drawer because I have extended Fragment and implemented an actionbar listener..
Thanks for your time
edited:
private void displayView(int position) {
Fragment fragment = null;
switch (position) {
case 0:
fragment = new Main Menu();
break;
case 1:
fragment = new My Video();
break;
case 2:
fragment = new Pictures();
break;
case 3:
fragment = new List of goods();
break;
case 4:
fragment = new Favorites();
break;
case 5:
fragment = new Plan();
break;
default:
break;
}
![enter image description here][1]
https://i.stack.imgur.com/D7MW3.png
it won't let me post an image, please follow the above link. I have created a visual diagram of what I want to do.
Simply add this to each of your switch;