我在Android中有Listview
。我希望Listview
自己从上到下连续滚动。它应该无限发生
显然我想抓住Listview
的任何项目的点击,发布滚动将继续
任何有此类实施经验的人。请帮忙!!
答案 0 :(得分:5)
http://groups.google.com/group/android-developers/msg/753a317a8a0adf03
要自动滚动,您可以使用:listView.smoothScrollToPosition(position);
private void scrollMyListViewToBottom() {
myListView.post(new Runnable() {
@Override
public void run() {
// Select the last row so it will scroll into view...
listView.smoothScrollToPosition(myListAdapter.getCount() - 1);
// Just add something to scroll to the top ;-)
}
});
}