how to show another List View 'B' after clicking List View 'A'

Posted by soclose on Stack Overflow See other posts from Stack Overflow or by soclose
Published on 2010-04-04T14:16:07Z Indexed on 2010/04/04 14:23 UTC
Read the original article Hit count: 185

Filed under:

Hi

I'd like to show another List View 'B' after clicking a item of List View 'A'. I use onListItemClick event in Android 1.6 project.

public void onListItemClick( ListView parent, View v, int position, long id) {
Toast.makeText(this, "You have selected " + lv_arr[position], Toast.LENGTH_SHORT).show(); }

how to code it?

© Stack Overflow or respective owner

Related posts about listviewitem