I have a custom listView defined like this

public class DDListView extends ListView implements OnScrollChangedListener {

than I make an instance of it with name mExampleList I set onLongClickListener but it never get called, where is my problem ?

mExampleList.setOnLongClickListener(new OnLongClickListener() {

        public boolean onLongClick(View v) {
            // TODO Auto-generated method stub
            Log.v("vvv", "sdfsdf");
            return false;
        }
    });
link|improve this question

64% accept rate
feedback

2 Answers

up vote 4 down vote accepted

I think you want to be using OnItemLongClickListener instead of OnClickListener.

link|improve this answer
He wants long click – Selvin Sep 30 '11 at 14:57
It's the same OnLongItemClickListener – A.Quiroga Sep 30 '11 at 15:00
there is no OnLongItemClickListener – Selvin Sep 30 '11 at 15:03
1. List view has only ListView.setOnLongClickListener(View.OnLongClickListener l)! 2. ListView dont have method called setOnLongItemClickListener 3. Simplest way/hack to add LongItemCLick is registerForContextMenu ! EDIT: in your link you point to AdapterView.OnItemLongClickListener ... question: does ListView implements it ? – Selvin Sep 30 '11 at 15:15
show 3 more comments
feedback

Mmmmm , are you trying to make all ListView longclckeable?

Some tips:

-Try first to see if normal OnClick gets fired;

-Try to see if you have setClickeable(true); on it;

-Try to see if you are really trying to do that and not an usual onItemClick() of the items in the list (to do this @override the function :
public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) {}

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.