gpt4 book ai didi

java - 自动滚动 ListView?

转载 作者:行者123 更新时间:2023-12-02 00:17:08 25 4
gpt4 key购买 nike

我已经实现了一个 ListView 来读取 rss feed,并且我想为此 ListView 实现自动滚动。

我可能会使用类似的东西:

listView.post(new Runnable() {
@Override
public void run() {
listView.smoothScrollToPosition(???);
}
});

但是如何顺利地读取所有位置,然后再次从顶部开始呢?

最佳答案

好吧,您可以使用某种计数器简单地迭代 ListView 中的元素:

int count = listView.getCount();
for (int i = 0; i < count; i++) {
listView.post(new Runnable() {
@Override
public void run() {
listView.smoothScrollToPosition(i);
}
});
}
// Once the method gets to here, i == count and we're at the last position
// So you can use some logic to scroll back to the top e.g.
// listView.smoothScrollToPosition(0)

您可能想考虑使用 Timer 对象,而不是使用 post() ,因为我相信对于何时可运行在后队列被执行。

编辑

因此,我设法获得了一个基本但有效的方法,例如使用带有固定速率调度的 ScrollTimerTaskTimer

//This is an inner class, with i an int in the Activity, starting at 0;
public class ScrollTimerTask extends TimerTask {

@Override
public void run() {
if (i < getListView().getCount()) {
getListView().smoothScrollToPosition(i);
i++;
}
else {
getListView().smoothScrollToPosition(0);
i == 0;
}
}

然后,在要开始向下移动列表的位置调用 new Timer().scheduleAtFixedRate(new ScrollTimerTask(), 0, 1000);。这将在无延迟后开始滚动,并且每 1000 毫秒安排一次滚动任务。

请注意,这是基本的,当您关闭 Activity 并持续运行时,它会崩溃。为了防止崩溃,我建议保留对 Timer 对象的引用,并在 Activity 的 onPause() 方法中调用 Timer.cancel() 。但这是一个起点!

关于java - 自动滚动 ListView?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11709024/

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