When vertically sliding finger on a ListView, it starts to scroll after a small move.
Is there any way to increase this “gap”, so it would be necessary a “larger” move to trigger the ListView’s scrolling?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There’s nothing explicit like
setSensitivitybut you might be able to set a flag to detect when the ListView isn’t scrolling. So then onScroll if the flag is set to true, (meaning that it has started scrolling from a fixed position), set the flag to false, and in the override of the scroll method only allow it to scroll once the amount is over 10dip for example…Then when it stops scrolling again, set the flag back to true.
It’s just an abstract idea but it sounds like it could work.