Custome Listview with Hashmap in ANDROID September 18, 2011 1) Go to res/Lauout/main.xml :- 2) Now Nextgot o res/Layout/row.xml :- 3) Now go to main Activity:- Share Get link Facebook X Pinterest Email Other Apps Share Get link Facebook X Pinterest Email Other Apps Comments Unknown16 April 2013 at 11:42how can i onclick on list item?????ReplyDeleteRepliesReplydj-android16 April 2013 at 18:16onListItemClick(ListView l, View v, int position, long id)This method will be called when an item in the list is selected.you have to create this method like:@Override protected void onListItemClick(ListView l, View v, int position, long id) { // TODO Auto-generated method stub super.onListItemClick(l, v, position, id); }where,ListView l : is your listviewint position: position of listview item(which item is selected)ReplyDeleteRepliesReplyAdd commentLoad more... Post a Comment
how can i onclick on list item?????
ReplyDeleteonListItemClick(ListView l, View v, int position, long id)
ReplyDeleteThis method will be called when an item in the list is selected.
you have to create this method like:
@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
// TODO Auto-generated method stub
super.onListItemClick(l, v, position, id);
}
where,
ListView l : is your listview
int position: position of listview item(which item is selected)