我已经实现了分页,它每页显示 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> {
}
请帮忙....