Need some help ! I have a ListActivity...on itch row i have 4 textVIew...
@Override
public void onListItemClick(ListView parent, View v, int position, long id) {
Intent intent = new Intent(this, Some.class);
intent.putExtra(KEY, (int) id);
startActivityForResult(intent, 0);
}
On list item click i can send ID easy. But also i have on click method on every tex开发者_运维百科tView... How can i get row id when i clik on TextView of this row ?
see this thread
精彩评论