I want to add OnLongClickListener on my list view. Whenever the user long press the item in list some action should be performed, But my code does not catch this listener. Please let me know where I am going wrong. The similar code works for setOnItemClickListener very well.

Here is the code :

listView.setOnItemLongClickListener(new AdapterView.OnItemLongClickListener() {

            public boolean onItemLongClick(AdapterView<?> arg0, View v,
                    int index, long arg3) {
                // TODO Auto-generated method stub
                 Log.d("in onLongClick");
                 String str=listView.getItemAtPosition(index).toString();

                 Log.d("long click : " +str);
                return true;
            }
}); 
link|improve this question

33% accept rate
see in xml whether long click is enable? – Connecting life with Android Jan 13 at 7:04
feedback

3 Answers

up vote 1 down vote accepted

you should try setOnItemLongClickListener() of listview , see the code below :

lv.setOnItemLongClickListener(new OnItemLongClickListener() {

            public boolean onItemLongClick(AdapterView<?> arg0, View arg1,
                    int pos, long id) {
                // TODO Auto-generated method stub

                Log.v("long clicked","pos"+" "+pos);

                return true;
            }
        }); 

Hope this help will you .

link|improve this answer
feedback

I think this above code will work on longclicking the listview, not the individual items.

why not use registerforContextmenu(listView). and then get the callback in OnCreateContextMenu.

For most use cases this will work same.

link|improve this answer
feedback

Have you remembered to add "implements OnItemLongClickListener" to your class declaration?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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