连续滚动图库?

发布于 2024-12-07 20:27:26 字数 95 浏览 0 评论 0原文

我有一个 Gallery 对象,可以从左向右滚动并再次返回。但是,我想让这个画廊自行循环,这样当我到达最后一个视图时,第一个视图就在下一个,我可以继续滚动。有什么想法吗?谢谢。

I have a Gallery object that scrolls from left to right and back again. However, I would like to make this Gallery circle back on itself, that way when I get to my last View, the very first one is next and I can just keep scrolling. Any ideas? Thanks.

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

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

发布评论

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

评论(1

〆一缕阳光ご 2024-12-14 20:27:26

画廊使用适配器来支持它们显示的数据。您可以创建一个自定义适配器,其中 getCount() 返回 Integer.MAX_VALUE,而 getView() 对位置与您拥有的图像数量进行取模。这样它总是返回给定位置的适当图像。

Galleries use an Adapter to back the data that they display. You can create a custom adapter where getCount() returns Integer.MAX_VALUE and getView() does a modulos the position with the number of images you have. This way it always returns the appropriate image for a given position.

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