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.
我有一个 Gallery 对象,它从左向右滚动并再次返回。但是,我想让这个画廊回到自己的圈子,这样当我到达我的最后一个视图时,第一个是下一个,我可以继续滚动。有任何想法吗?谢谢。
画廊使用适配器来支持它们显示的数据。您可以创建一个自定义适配器,其中getCount()返回 Integer.MAX_VALUE 并getView()根据您拥有的图像数量对位置进行取模。这样,它总是返回给定位置的适当图像。
getCount()
getView()