如何滚动水平滚动视图而不动画

use*_*209 7 animation android scrollview

问题是我正在使用fullScroll()scrollTo()函数滚动但它是动画的,我需要它在没有用户观察的情况下发生.

有没有办法解决这个问题?

hScrollView.post(new Runnable() {
    @Override
    public void run() {
        hScrollView.fullScroll(HorizontalScrollView.FOCUS_RIGHT);
    }
});
Run Code Online (Sandbox Code Playgroud)

Gir*_*air 6

用这个

// Disable the animation First
hScrollView.setSmoothScrollingEnabled(false);
// Now scroll the view
hScrollView.fullScroll(HorizontalScrollView.FOCUS_RIGHT);
// Now enable the animation again if needed
hScrollView.setSmoothScrollingEnabled(true);
Run Code Online (Sandbox Code Playgroud)