gpt4 book ai didi

android - 具有滚动速度控制的无限自动滚动 ListView

转载 作者:IT老高 更新时间:2023-10-28 23:34:07 25 4
gpt4 key购买 nike

我一直在研究 ListView 的想法,它可以在没有用户交互的情况下自动滚动,并且使用 android API 是绝对可行的,例如 smoothScrollToPositionFromTop

我已经实现了 ListView BaseAdapter,它永远(几乎)加载项目以获得不间断的 self 重复 ListView

我想在这里实现的是让我的ListView以一定的速度(慢)永远滚动,以使项目在向下滚动时清晰可读,我还不确定ListView 是我最好的选择。

下面是我正在尝试做的一个 fragment 。结果不知何故还不错,但不够流畅,我能感觉到 ListView 闪烁。

我需要提高流畅度、效率和控制速度

new Thread(new Runnable() {

@Override
public void run() {
int listViewSize = mListView.getAdapter().getCount();

for (int index = 0; index < listViewSize ; index++) {
mListView.smoothScrollToPositionFromTop(mListViewA.getLastVisiblePosition() + 100, 0, 6000);
try {
// it helps scrolling to stay smooth as possible (by experiment)
Thread.sleep(60);
} catch (InterruptedException e) {

}
}
}
}).start();

最佳答案

我建议,您的适配器以有效的方式实现。所以这段代码只是滚动 ListView

您需要尝试其他变量值

final long totalScrollTime = Long.MAX_VALUE; //total scroll time. I think that 300 000 000 years is close enouth to infinity. if not enought you can restart timer in onFinish()

final int scrollPeriod = 20; // every 20 ms scoll will happened. smaller values for smoother

final int heightToScroll = 20; // will be scrolled to 20 px every time. smaller values for smoother scrolling

listView.post(new Runnable() {
@Override
public void run() {
new CountDownTimer(totalScrollTime, scrollPeriod ) {
public void onTick(long millisUntilFinished) {
listView.scrollBy(0, heightToScroll);
}

public void onFinish() {
//you can add code for restarting timer here
}
}.start();
}
});

关于android - 具有滚动速度控制的无限自动滚动 ListView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13952357/

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