1

我已经实现了分页,它每页显示 5 条记录。现在假设我在第 3 页并单击第 3 个元素,然后选择第 1 页的第 3 个元素。

我无法找出问题,因为我总是在设置数据时创建新的列表对象。

我用下面的代码

temp = new ArrayList();
this.someListAdapter = new SomeListAdapter(this, R.layout.row_facet,temp);
setListAdapter(this.someListAdapter );

下面是 SomeListAdapter 类的签名。

public class SomeListAdapter extends ArrayAdapter<VoNeighborhood> {
}

请帮忙....

4

1 回答 1

0

关于如何使用ListView.

所以我可能猜想你正在覆盖onListItemClick并使用position它发送给你的变量,但是你没有考虑到你所在的页面?

或者,只是不要使用分页,因为你有一个无限的画布来滚动你的列表——我想我到目前为止还没有见过使用分页的 Android 应用程序!

于 2010-01-14T19:30:13.387 回答