How to link listview items to different activities in android?

1.3k Views Asked by At

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;

  1. My items/buttons in the itemview are stored in an array in my string xlm.
  2. 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.

2

There are 2 best solutions below

0
On BEST ANSWER

Simply add this to each of your switch;

Intent nameofactivity = new Intent(this, nameofactivity.class);
startActivity(activitytostart);
1
On

I assume this is your first Android app? From your switch statement I think you are trying to create a new activity by doing:

fragment = new My Video(); 

If you want to launch an activity, you would simply create an Intent for your activity and call startActivity for that intent by putting the following in displayView:

Intent myVideoIntent = new Intent(this, VideoActivity.class);
startActivity(myVideoIntent);

You would need to do this for each of the cases.