Android 检测 GridView 中按钮上的悬停
我有带有 6 个按钮的 GridView,我需要检测用户当前所在的按钮,当用户到达特定按钮的边缘时,手指会振动。 是否可以在 GridView 中的按钮层以某种方式执行此操作,或者更好地在我的 gridview 中实现它并计算每个按钮边缘的坐标?
I have GridView with 6 buttons and I need to detect which button is the user currently on with his finger to vibrate when user reach edge of the particular button.
Is it possible to do it somehow at the layer of the buttons in GridView, or is better implement it in my gridview and count coordinates of each button edges?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以定义自己的OnTouchListener来捕获GridView中View接收到的事件。像这样的东西:
You can define your own OnTouchListener to capture the events received by the View in the GridView. Something like this: