0

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 textView... How can i get row id when i clik on TextView of this row ?

Tobias
  • 7,238
  • 10
  • 46
  • 77
Jim
  • 8,874
  • 16
  • 68
  • 125

1 Answers1

0

see this thread

Community
  • 1
  • 1
Sunil Pandey
  • 7,042
  • 7
  • 35
  • 48