Android:处理 HorizontalScrollView 内的 ImageView 上的点击事件
我在 HorizontalScrollView 中有一堆 ListView。我希望当用户点击图像时有一个“点击”事件。目前我正在使用 OnTouch 事件,但这是一个问题。如果我滑动 HorizontalScrollView 以查看更多图像,则一滑动就会触发 OnTouch 事件。我真的只希望它在我点击图像时被触发,而不是在我滑动实际图像列表时被触发。知道该怎么做吗?谢谢你!
I have a bunch of ListViews inside of a HorizontalScrollView. I would like to have a "tap" event when the user taps on the image. Currently I am using the OnTouch event but this is a problem. If I swipe the HorizontalScrollView to view more images, the OnTouch event gets fired as soon as I swipe. I really only want it to get fired when I tap on an image but not when I am swiping the actual list of images. Any idea how to do that? Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你应该使用 onClick 而不是 onTouch 。
You should use onClick instead of onTouch I think.