gpt4 book ai didi

android - 如何在没有动画的情况下滚动水平 ScrollView

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:03:15 26 4
gpt4 key购买 nike

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

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

hScrollView.post(new Runnable() {
@Override
public void run() {
hScrollView.fullScroll(HorizontalScrollView.FOCUS_RIGHT);
}
});

最佳答案

使用这个

// 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);

关于android - 如何在没有动画的情况下滚动水平 ScrollView ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11210124/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com