如何移动到android中水平滚动视图的特定图像

发布于 2024-11-17 08:12:10 字数 68 浏览 7 评论 0原文

如果我们单击图库的第三张图像,则将显示该图像,如果我们向右滚动,则将显示下一张图像,如果我们向左滚动,则将显示上一张图像。

if we click on the third image of the gallery then that image will be displayed and if we scroll right then next image will be displayed and if we scroll left then previous image will be displayed.

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

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

发布评论

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

评论(1

江湖彼岸 2024-11-24 08:12:10

请考虑重新表述您的问题,目前尚不清楚您在寻找什么。
我大胆猜测您想要实现一个画廊,使用 Gallery 类并在下面的更大视图中显示所选图像。

然后您需要做的是按照以下教程进行操作:
http://developer.android.com/guide/tutorials/views/hello -gallery.html
但不要将 Gallery 作为布局 xml 的根元素,而是使用 LinearLayout 或其他布局,在其中放置 Gallery 和 ImageView。
然后为 Gallery 实现一个 onItemSelectedListener,在其中将 ImageView 绑定到选定的图像资源。

Please consider rephrasing your question, it is unclear what you are looking for.
I will hazard a guess that you want to implement a gallery, using the Gallery class and displaying the selected image in a larger view below.

What you need to do then is to follow the tutorial on:
http://developer.android.com/guide/tutorials/views/hello-gallery.html
but instead of having the Gallery as the root element of the layout xml, use a LinearLayout or other, where you put both the Gallery and an ImageView.
Then implement an onItemSelectedListener for the Gallery, in which you bind the ImageView to the selected image resource.

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