I have a gesture listener interfering with a listView
scroll. "On Finger Down" action won't stop a listView
scroll once it started, so I was going to write it into code.
I can't find a method to stop a listView when finger touches the list?
I want to do it here:
public boolean onDown(MotionEvent e) {
// Stop Scroll here!
return true;
}
Is this possible