this example: http://saigeethamn.blogspot.com/2010/04/custom-listview-android-developer.html .There are 3 textview ids at custom_row_view.xml. There are 3 row data inside one position listitem when using onListItemClick. how to extract these data? how to use the id? Anyway to get row view data in the list view when the list item is clicked
[protected void onListItemClick(ListView l, View v, int position, long id]?
this example: http://saigeethamn.blogspot.com/2010/04/custom-listview-android-developer.html .There are 3 textview ids at custom_row_view.xml. There are 3 row
Share
The parameter
View vitself is the row view. You can get the attached data by callingv.getTag(). Should set it earlier in getView of adapter usingv.setTag(Object)