Difference between revisions of "List OnItemClick"
From John Freier
(Created page with 'How to call a click action on the item that is clicked. I have not tryed this yet. ListView lv = getListView(); lv.setOnItemClickListener(new OnItemClickListener() { p…') |
|||
Line 4: | Line 4: | ||
ListView lv = getListView(); | ListView lv = getListView(); | ||
− | + | ||
lv.setOnItemClickListener(new OnItemClickListener() | lv.setOnItemClickListener(new OnItemClickListener() | ||
{ | { |
Revision as of 15:19, 8 February 2011
How to call a click action on the item that is clicked.
I have not tryed this yet.
ListView lv = getListView(); lv.setOnItemClickListener(new OnItemClickListener() { public void onItemClick(AdapterView<?> parent, View view, int position, long id) { // When clicked, show a toast with the TextView text Toast.makeText(getApplicationContext(), ((TextView) view).getText(), Toast.LENGTH_SHORT).show(); } });