Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

listView onclick goes to a new activity

i have a listview and i would like to go to a new activity from every list item i press.this is my code..

public class DialogActivity extends Activity {

 private ListView lv1;

 private String lv_arr[]={"SuperLeague 2010-2011","Olympiakos on YouTube","Olympiakos Web Site","Find Karaiskaki on map","Reserve Tickets"};
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.dialog);

        lv1=(ListView)findViewById(R.id.dialog_list);

        // By using setAdpater method in listview we an add string array in list.

        lv1.setAdapter(new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1 , lv_arr));


        lv1.setOnItemClickListener(new OnItemClickListener() {
      public void onItemClick(AdapterView<?> parent, View view,
          int position, long id) {

      //  Intent newActivity = new Intent(view.getContext(),agones.class);     
            //     startActivity(newActivity);

      }
    });

    }

}

like image 202
menu_on_top Avatar asked Jan 31 '11 14:01

menu_on_top


1 Answers

Use a switch statement in that method:

  public void onItemClick(AdapterView<?> parent, View view,
      int position, long id) {
    switch( position )
    {
       case 0:  Intent newActivity = new Intent(this, superleague.class);     
                startActivity(newActivity);
                break;
       case 1:  Intent newActivity = new Intent(this, youtube.class);     
                startActivity(newActivity);
                break;
       case 2:  Intent newActivity = new Intent(this, olympiakos.class);     
                startActivity(newActivity);
                break;
       case 3:  Intent newActivity = new Intent(this, karaiskaki.class);     
                startActivity(newActivity);
                break;
       case 4:  Intent newActivity = new Intent(this, reservetickets.class);     
                startActivity(newActivity);
                break;
    }
}

Change the class names to whatever they need to be for each Activity.

like image 159
Jems Avatar answered Nov 07 '22 13:11

Jems