Android 轮播图库

发布于 2024-09-02 02:48:17 字数 49 浏览 2 评论 0原文

我怎样才能轮播图片库,它永远不会结束..在最后一张图片之后和第一张最后一张图片之前。

How can i carousel image gallery which never gets end.. after last first image and before first last image.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陌伤ぢ 2024-09-09 02:48:17

我通过创建自己的列表适配器(继承自
基础适配器)。
我以 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 :-)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文