I am trying to handle touch events and click events on a button. I do the following:
button.setOnClickListener(clickListener); button.setOnTouchListener(touc
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.
true
OnTouchListener
On a side note - what's the point of having both a click and touch listener?