Android 画廊 fling 与图像视图

发布于 2024-12-10 09:51:26 字数 167 浏览 1 评论 0原文

我的主布局中有一个 Android 画廊和图像视图。当我触摸图库中的图像时,我会在下面的图像视图中显示该图像。我想要实现的是我希望用户能够将图像本身向左或向右移动以转到下一个或上一个图像。我也能做到这一点。但同时,当用户切换到下一个图像时,我希望顶部的图库也滚动到下一个图像。我怎样才能实现这个目标。任何帮助将不胜感激。

I have a android gallery and image view in my main layout. When I touch an image in Gallery I display that image in the imageview below. What I am trying to achieve is I want the user to be able to fling the image itself to left or right to go to next or previous image. I have been able to do that also. But at the same time when the user flings to next image I want the Gallery on top also to scroll to next image. How Can I achieve this. Any help will be greatly appreciated.

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

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

发布评论

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

评论(1

坏尐絯℡ 2024-12-17 09:51:27

您必须使用 setSelection 方法。

if( fling right ){
   gallery.setSelection(gallery.getSelectedItemPosition() + 1);
}

You will have to use the setSelection method.

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