无限图库中的 OnItemLongClick

发布于 2024-11-24 18:28:12 字数 426 浏览 2 评论 0原文

我正在为我的 Android 应用程序创建一个图像库,我需要它无限循环浏览图像。为了实现这一点,我使用此处找到的无限图库小部件(代码为 此处)。画廊工作得很好,但是我在实现长按功能时遇到了困难。我不想创建上下文菜单,只是想调用另一个方法。

将 onItemClickListener 添加到 InfiniteGalleryActivity 中的 InfiniteGallery 对象不起作用。

I am creating an Image gallery for my Android app and I need it to loop through images infinitely. To achieve this I am using the Infinite Gallery widget found here (Code is here). The gallery works very well, however I am having trouble implementing a long press function. I am not trying to create a context menu, just trying to call another method.

Adding an onItemClickListener to the InfiniteGallery object in InfiniteGalleryActivity has not worked.

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

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

发布评论

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

评论(1

下雨或天晴 2024-12-01 18:28:12

您是否尝试过使用 GestureDetector.OnGestureListener 来实现 onLongPress(MotionEvent e)?

信息就在这里:
http://developer.android.com/reference/android/view/GestureDetector .OnGestureListener.html

希望这对您有帮助 =)

Have you tried with the GestureDetector.OnGestureListener, implementing the onLongPress(MotionEvent e)??

Information right here:
http://developer.android.com/reference/android/view/GestureDetector.OnGestureListener.html

Hope this helps you out =)

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