Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I listen to click event on a ListView?

This is what I have now

ListView list = (ListView)findViewById(R.id.ListView01);  
...  
list.setAdapter(adapter);  

When I do the following

list.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {  
   public void onItemSelected(AdapterView parentView, View childView, int position, long id) {  
            setDetail(position);  
        }
        public void onNothingSelected(AdapterView parentView) {  

        }  
      });  

That doesn't seem to do anything on click.
And all those code live within a class that extends Activity.

share|improve this question

4 Answers

up vote 89 down vote accepted

On your list view, use setOnItemClickListener

share|improve this answer
Thanks David. Geezzz, I tried setOnClickListener and setOnItemSelectedListener but missed reading setOnItemClickListener. Thanks, Tee – teepusink Mar 18 '10 at 8:37
i did the same as teepusink :D – Shereef Oct 18 '11 at 7:12

Suppose ListView object is lv, do the following-

lv.setClickable(true);
lv.setOnItemClickListener(new AdapterView.OnItemClickListener() {

  @Override
  public void onItemClick(AdapterView<?> arg0, View arg1, int position, long arg3) {

    Object o = lv.getItemAtPosition(position);
    /* write you handling code like...
    String st = "sdcard/";
    File f = new File(st+o.toString());
    // do whatever u want to do with 'f' File object
    */  
  }
});
share|improve this answer

You need to set the inflated view "Clickable" and "able to listen to click events" in your adapter class getView() method.

convertView = mInflater.inflate(R.layout.list_item_text, null);
convertView.setClickable(true);
convertView.setOnClickListener(myClickListener);

and declare the click listener in your ListActivity as follows,

public OnClickListener myClickListener = new OnClickListener() {
public void onClick(View v) {
                 //code to be written to handle the click event
    }
};

This holds true only when you are customizing the Adapter by extending BaseAdapter.

Refer the ANDROID_SDK/samples/ApiDemos/src/com/example/android/apis/view/List14.java for more details

share|improve this answer
thanks Vijay i have facing click issue on inflate view i have solve from your answer – dhaiwat Nov 18 '10 at 11:37
But this doesn't determine what item is being clicked, which makes it more-or-less useless for a list? Correct? – farm ostrich May 20 '11 at 23:55
you can set tag to convertView and check the same in onClick.. using tag which item is clicked can be identified... – Vijay C Sep 2 '11 at 12:08
I have found a more elegant solution than a tag in your adapter store a setOnClickListener reference and call it on the onClick(View v) method. then the activity can recieve the event with the position. – jocelyn Dec 29 '12 at 19:45

The two answers before mine are correct - you can use OnItemClickListener.

It's good to note that the difference between OnItemClickListener and OnItemSelectedListener, while sounding subtle, is in fact significant, as item selection and focus are related with the touch mode of your AdapterView.

By default, in touch mode, there is no selection and focus. You can take a look here for further info on the subject.

share|improve this answer
2  
bah android madness – max4ever Feb 6 '12 at 12:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.