Nikki
You need to check the source code here .
again the text should come to its original position
for this use scrollTo(0, 0);
I want to find a position
use scroll.getCurrX();
want to stop scrolling automatically
use scroll.abortAnimation();
& you are done! :)
Edition:
Nikki, , Android.Widget.TextView, TextView, , . , , computeScroll (),
public void computeScroll() {
super.computeScroll();
if (null == mSlr) return;
if (mSlr.isFinished() && (!mPaused)) {
scrollTo(0, 0);
}
}