I'd like to have both type of clicks on a listView - onClick and LongClick.

I've implemented it like this:

this.listViewSub = (ListView) this.findViewById(R.id.listsub);

this.listViewSub.setOnItemClickListener(new OnItemClickListener() {
        @Override
        public void onItemClick(final AdapterView parent, final View view, final int position,
                final long id) { ... }    });

        // listen to long click - to share texts
    this.listViewSub.setOnLongClickListener(new OnLongClickListener() {
        @Override
        public boolean onLongClick(View v) { ... } });

But it does't fire the Long Click. Anyone has any idea why?

link|improve this question

75% accept rate
feedback

2 Answers

up vote 4 down vote accepted

u have to enable the longclickable

list.setLongClickable(true);

and

list.setOnItemLongClickListener(new OnItemLongClickListener() {
        @Override
        public boolean onItemLongClick(AdapterView<?> arg0, View arg1,
                final int arg2, long arg3) {

}
});
link|improve this answer
Thanks man! Solved my problem :) And BTW - you don't have to do setLongClickable trough code, its nicer when you determn it through the XML: android:longClickable="true" – spi7fire Jul 7 '11 at 9:37
The documentation of setOnItemLongClickListener says that "If this view is not long clickable, it becomes long clickable." – Vadim Aug 18 '11 at 14:20
And this doesn't work for me... :( – Vadim Aug 18 '11 at 14:23
feedback

onLongClick returns true if the callback consumed the long click, false otherwise. So if the event is handled by this method, return true.

link|improve this answer
I've added a breakpoint inside this method, and it doesn't stops there.. it looks like it doesnt fire the event. – spi7fire Jul 7 '11 at 8:16
feedback

Your Answer

 
or
required, but never shown

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