I have a listView. In that listView i have implemented onTouchListener. Every things work fine, but when list is Scrolling , on tapping on the list , the list should stop(like normal android listView).No action can be done while scrolling like stopping the scroll.This happen because of the onTouchListener. I am returning false from onTouchListener. I don't know why this behavior happens?Can any one help.

link|improve this question

78% accept rate
1  
why are you implementing onTouchListener? What's the goal? – gwa Dec 19 '11 at 6:45
i wanted to implement 2 finger swipe in it. – ShineDown Dec 19 '11 at 7:02
1  
what you mean by "2 finger swipe" ? – FasteKerinns Dec 19 '11 at 7:07
feedback

1 Answer

up vote 0 down vote accepted

try returning super.onTouchListener, or true, when you don't want to consume the event (i'm thinking you implemented gestures). returning false means you're discarding the TouchEvent, and you don't want to do that if you want to stop the scroll.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.