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 在滚动 GridView 时无限循环/重复所有项目。
例如,假设 GridView 有 1 列和 3 个项目。我希望它像这样显示: ... item 1 item 2 item 3 item 1 item 2 item 3 item 1 ....
让您的适配器返回Integer.MAX_VALUE,getCount()然后使用 getView 获取您的数据myData[position % myData.length]
Integer.MAX_VALUE
getCount()
myData[position % myData.length]