gpt4 book ai didi

android - 如何加快 ScrollView 中的滚动量

转载 作者:行者123 更新时间:2023-11-30 01:47:32 24 4
gpt4 key购买 nike

我的 Activity 中有一个 ScrollView 。当我向下滚动时,滚动不多,我想增加滚动量。

我该怎么做?

最佳答案

Flinging is the type of scrolling that occurs when a user drags and lifts her finger quickly.

@Override
public void fling(int velocityY) {
int topVelocityY = (int) ((Math.min(Math.abs(velocityY), MAX_SCROLL_SPEED) ) * Math.signum(velocityY));
super.fling(topVelocityY);
}

我从here复制过来的.

关于android - 如何加快 ScrollView 中的滚动量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33501894/

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