Difference between revisions of "List OnItemClick"

From John Freier
Jump to: navigation, search
 
Line 1: Line 1:
 
How to call a click action on the item that is clicked.
 
How to call a click action on the item that is clicked.
  
I have not tryed this yet.
+
The only problem I had with this method, was calling outside methods. Didn't try
 +
to hard.
 +
 
  
 
  ListView lv = getListView();
 
  ListView lv = getListView();

Latest revision as of 09:18, 11 February 2011

How to call a click action on the item that is clicked.

The only problem I had with this method, was calling outside methods. Didn't try to hard.


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();
    }
});