I need to set both an onClickListener and an onTouchListener to a View. When setting only one of them the corresponding listener works as expected, but when I set both, only the touch listener is called, i.e. gesture works, but click doesn't...
Anybody can help?
verticalSwipeDetector = new GestureDetector(new VerticalSwipeListener());
verticalSwipeListener = new View.OnTouchListener()
{
public boolean onTouch(View v, MotionEvent event)
{
if (verticalSwipeDetector.onTouchEvent(event))
{
return true;
}
else{
return false;
}
}
};
gallery.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
// never called
}
});
gallery.setOnTouchListener(verticalSwipeListener);