设置图库中视图的 onClick 方法会禁用图库的 fling

发布于 2024-11-28 05:40:50 字数 113 浏览 2 评论 0原文

Gallery 的每个窗格都包含多个视图,我需要区分它们的单击 - AdapterView.OnItemClickListener() 仅指示 Gallery 被单击。同时实现图库浏览和视图点击的最佳方法是什么?

Each of the Gallery's panes hold more than a single view and I need to differentiate between their clicks - AdapterView.OnItemClickListener() just indicates that the Gallery was clicked. What's the best way to get both Gallery flinging and view clicking simultaneously?

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

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

发布评论

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

评论(3

染墨丶若流云 2024-12-05 05:40:51

在您的点击侦听器中,返回 false。返回 false 意味着事件未被消耗,并将事件传播到可能正在观看同一事件的其他视图。

In your click listener, return false. Returning false means that the event was not consumed and to propagate the event to other views who may be watching the same event.

夜巴黎 2024-12-05 05:40:51

项目布局的某些部分不应包含可点击的项目。如果您触摸该部分并尝试滑动,​​它应该会起作用。

Some part of your item layout shouldn't contain a clickable item. If you touch that part and try swiping, it should work.

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