I have a ListView in Android and I would like to have onTouchListeners for the row views and the parent ListView itself. I'd like to respond to single taps and long presses on the rows individually, but to flings on the ListView as a whole. (I can set the onFling method for each of the rows individually, but it's not robust, since the user can move his finger across rows.) I'm able to successfully set an onTouchListener for the rows and the ListView separately, but when I set both, the ListView listener never triggers - only the row listeners. This is the case whether I return true or false in the methods of the row listener. Does anybody know how to trigger onTouchListeners for both a view and its parent, given that they occupy the same pixels on the screen?
The relevant code for the ListView:
In the activity onCreate method:
mListViewDetector = new GestureDetector(new ListViewGestureListener());
mListViewListener = new View.OnTouchListener() {
public boolean onTouch(View v, MotionEvent event) {
return mListViewDetector.onTouchEvent(event);
}
};
mListView = getListView();
mListView.setOnTouchListener(mListViewListener);
And the custom GestureListener class (defined as a nested class in the activity):
class ListViewGestureListener extends SimpleOnGestureListener {
@Override
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) {
Log.i("ListViewGestureDetector","onFling");
return false;
}
}
The relevant code for the individual rows in the Listview:
In the bindView method of the the adapter class:
TextView textView;
textView.setOnTouchListener(new ListsTextViewOnTouchListener());
And the custom onTouchListener class (defined as a nested class in the adapter class):
class ItemsTextViewOnTouchListener implements OnTouchListener {
public boolean onTouch (View v, MotionEvent event){
switch(event.getActionMasked()) {
case MotionEvent.ACTION_DOWN:
//stuff
return false;
case MotionEvent.ACTION_CANCEL:
//stuff
return false;
default:
break;
}
return false;
}
}