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.
我正在Android中实现gridview,我的要求是我希望只有9个项目出现在一个页面上,如果gridview中有超过9个项目而不是其余的项目应该出现在下一页上。可能吗??
谢谢
您覆盖以在扩展基本适配器的自定义图像适配器中获取计数的方法。此方法给出要添加的项目数。
公共类 ImageAdapter 扩展 BaseAdapter{
@Override public int getCount() { return imageList.size(); }
}
将您的数据集分成九个块,将第一组九个给您用于GridView. Button让 for next page 将下一个数据集块提供给适配器,并告诉适配器数据集已更改。
GridView
Button