10-30-2011 11:45 AM
Hi all
I've searced in many api but i can't find the solution
the question is, how can i force the scroll to stop scrolling? did it have any method to do that
if not, how can i check that scroll is already stop so that i can run another method after that
Thank very much
Solved! Go to Solution.
10-30-2011 02:58 PM
Hi SiraP,
The first thing that has to be said is that scrolling in BlackBerry is actually moving the focus between the fields.
Once that said, you can either:
1. Use the various Focus methods (onFocus(), onUnFocus(), etc.) to realize when the scrolling is done.
2. Implement your own scroll bar and adjust the scrolling to your needs. You can find a good example in this link: http://supportforums.blackberry.com/t5/Java-Develo
Hope that helps,
E.
10-30-2011 04:39 PM
Thanks very much : )