Android:通过手指触摸屏幕来测量/检测覆盖区域(不仅仅是触摸坐标)
我想在 Android 上每次触摸事件时访问手指覆盖的区域。
每个触摸事件都会产生一个坐标对 X 和 Y,与触发事件的手指有多大以及触摸区域无关。
我想知道是否有一种方法可以获取触发触摸事件的区域数据,例如大小或坐标,
非常感谢任何帮助。
预先感谢您的回答或重定向,
克里斯蒂安
I would like to get access to the area covered by a finger for each touch event on an Android.
Every touch event will result in a coordinate pair X and Y independent of how big the finger and consequently the touch area is that triggered the event.
I was wondering if there is a way to get the area data which triggered the touch event e.g. size or coordinates NOT
Any help is much appreciated.
Thanks in advance for you answer or redirects,
Christian
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
方法
motionEvent.getSize()
应该可以满足您的需求(但准确度可能会因设备屏幕的不同而有所不同)。The method
motionEvent.getSize()
should give you what you want (but the level of accuracy may vary depending on the device's screen).您需要实现 OnGestureListener。
首先,您需要在 onTouchEvent 中注册 GestureDetector
在 onShowPress 中您将获得起点
在 onScroll 中您将获得终点。
You need to implement OnGestureListener.
First of all, you need to register GestureDetector in onTouchEvent
In onShowPress you will get starting points
In onScroll you will get the end points.