滚动后的图库位置
我有一个包含 7 张图片的画廊。 当Gallery
停止滚动时如何获取位置?
I have a gallery with 7 images.
How can I get the position when stop the scrolling of a Gallery
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
作为参考,您可以处理 Galley 组件的 setOnItemSelectedListener 来执行此操作。
For reference you can handle the setOnItemSelectedListenerof the Galley component to do this.
您是否在 Gallery 中使用适配器?如果是这样,则 AdapterView 有一个返回 int 的 getSelectedItemPosition() 函数。
您可以子类化 ImageAdapter 类并添加一个返回私有 int 的函数,该函数始终更新为最后一个“单击”图像的索引;从而为您提供当前图像的位置。
Are you using an Adapter with the Gallery? If so, then AdapterView has a getSelectedItemPosition() function that returns an int.
You can subclass the ImageAdapter class and add a function that returns a private int which is always updated to the index of the last 'clicked' image; thus giving you the position of the current image.