is it possible to set listview scroll one by one? can you give an example.
Asked
Active
Viewed 2,069 times
-3
-
look at this: http://stackoverflow.com/questions/10707568/listview-scroll-one-by-one – D-32 Oct 16 '12 at 07:43
-
don't ask these type of simple question. It is already present in stackoverflow. Try to search in stackoverflow and get answer. If you ask these type of question , you will get more down votes. try to get answer in stackoverflow. If you didn't get , then ask here. – selva_pollachi Oct 16 '12 at 07:48
-
You should do R&D before posting questions – Abhinav Singh Maurya Oct 16 '12 at 07:50
-
sorry, but i already tried that & it doesn't work. – user1326288 Oct 16 '12 at 08:19
-
So what didn't work about it? What error did you get? What else have you tried? The more information you provide the more likely you are to get help, and the less likely it is that your question gets closed. – dave.c Oct 16 '12 at 14:34
2 Answers
2
Try this
listView.setOverScrollMode(View.OVER_SCROLL_NEVER);
hide the scrollbar:
listView.setVerticalScrollBarEnabled(false);

selva_pollachi
- 4,147
- 4
- 29
- 42