I am trying to handle touch events and click events on a button. I do the following:
button.setOnClickListener(clickListener); button.setOnTouchListener(touc
You should return false in your OnTouchListener then your OnClickListener will be also handled.
OnTouchListener
OnClickListener