Android 轮播图库
我怎样才能轮播图片库,它永远不会结束..在最后一张图片之后和第一张最后一张图片之前。
How can i carousel image gallery which never gets end.. after last first image and before first last image.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过创建自己的列表适配器(继承自
基础适配器)。
我以 getCount() 方法的方式编写了自己的列表适配器
返回一个 HUUUUGE 数字。
如果选择“x”项,则该项对应于适配器
position='adapter.getCount()/2+x'
对于我的适配器的方法 getItem(intposition),我查看我的数组
备份适配器并获取索引上的项目:
(position-getCount()/2) % myDataItems.length
你需要做一些更“特殊”的事情才能让一切顺利进行
正确,但你明白了。
原则上还是有可能到达终点或者起点的
列表的数量,但如果将 getCount() 设置为大约一百万左右,则这
很难做到:-)
I did this by creating my own list-adapter (subclassed from
BaseAdapter).
I coded my own list-adapter in such a way that its getCount() method
returns a HUUUUGE number.
And if item 'x' is selected, then this item corresponds to adapter
position='adapter.getCount()/2+x'
And for my adapter's method getItem(int position), i look in my array
that backs up the adapter and fetch the item on index:
(position-getCount()/2) % myDataItems.length
You need to do some more 'special' stuff to make it all work
correctly, but you get the idea.
In principle, it is still possible to reach the end or the beginning
of the list, but if you set getCount() to around a million or so, this
is hard to do :-)