I have a listview. What I would like to achieve is that when I longclick any item it will show a dialog menu. However I have a click listener as well. it gets triggered after long click. How Can I cancel that or is there a way of ignoring clcik action for longclick.

Thanks

link|improve this question

65% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Check this out:

There is a specific method for setOnLongClickListener. Just make sure that you setLongClickable to be true for your ListView! You need to separate the listeners you define for a normal click and a long click.

Other than that, try posting some of your code. It will allow the community to better help you.

link|improve this answer
cheers i got it – akdurmus Dec 28 '11 at 0:33
@akdurmus: Good job! – hwrdprkns Dec 28 '11 at 3:34
feedback

If you want to do this the right way, read up on Context Menu. Otherwise you can do it the easy but messy way using pop-up dialogs and by overriding listview's onItemLongClickListener

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.