Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在从数据库中获取数据并在 ListView 中使用自定义列表适配器进行显示。
我只需要在 ListView 中显示 10 个项目。在第 10 项之后,一个按钮显示文本“显示更多”,当单击此按钮时,在列表视图中显示来自数据库的更多 10 项。
我怎么能这样做?
请通过代码示例告诉我
谢谢
在 Base Adapter 中,最初取 i=10;然后在 BaseAdapter 的 getCount() 方法中使用这个“i”。
public int getCount() { // TODO Auto-generated method stub return i; }
并在您的“显示更多”按钮中单击递增 i,然后调用适配器。
前任:
i=i+10; adapter.notifyDataSetChanged();