无限图库中的 OnItemLongClick
我正在为我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过使用 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 =)