I am trying to handle touch events and click events on a button. I do the following:

button.setOnClickListener(clickListener);
button.setOnTouchListener(touchListener);

When any one listener is registered things work fine but when I try to use them both only the touch events are fired. Any workaround? What am I doing wrong?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

There is a subtle, yet very important difference between the ClickListener and the TouchListener. The TouchListener is executed befor the view can respond to the event. The ClickListener will receive its event only after the view has handled it.

So when you touch your screen, the TouchListener is executed first and when you return true for your event, the ClickListener will never get it. But if you press the trackball of your device, the ClickListener should be fired because the TouchListener will not respond to it.

link|improve this answer
feedback

I suppose you're returning true in your OnTouchListener? That will consume the event so it won't be sent down for any further processing.

On a side note - what's the point of having both a click and touch listener?

link|improve this answer
The client wants a sound to be played when the button is pressed and released, I do it in the 'ACTION_UP' and 'ACTION_DOWN' events. And the click event does the logic. Now I'll have to handle the logic in the touch event itself. – Ragunath Jawahar Mar 2 '11 at 3:30
feedback

You should return false in your OnTouchListener then your OnClickListener will be also handled.

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.