I have a ListView that I am calling smoothScrollBy() on. 95% of the time, the smoothScrollTo() behaves as intended. However there are times that it does not end up in the intended spot! I have verified that I am giving it the same value. I notice that the smooth scrolling is not so smooth when the errors are made, however there are no other tasks that my application is performing that I would have control over.
I am not quite sure what is going on in the background but a likely culprit is garbage collection.
95% accuracy is not good enough in this situation. I am going to have to implement some sort of a correction mechanism to make sure the ListView lands on the correct spot in these instances.
Is there a better way to use smoothScrollBy() other than simply calling view.smoothScrollBy(distance, time);?
smoothScrollBy(), but its actual operation is very inconsistent. – Trevor Jun 28 '12 at 21:52Handler) from anOnScrollListener(). I am surprised to say that the end result is extremely good. What I did was make the bulk of the scrolling occur very fast, but the final scroll over the final 500px is slow (400ms). This makes the entire scroll look very fluid and nice looking, rather like a single non-linear scroll. I'll have to try to find some time to put an example together and post it here. – Trevor Jun 29 '12 at 19:38