android 触摸灵敏度

android touch sensitivity

有人知道如何以编程方式设置手套模式或增加触摸灵敏度的设置吗?还要检查此功能是否可用。 谢谢

android.hardware.touchscreen.multitouch.distinct 特性在文档中定义如下 (http://developer.android.com/guide/topics/manifest/uses-feature-element.html):

The application uses advanced multipoint multitouch capabilities on the device screen, such as for tracking two or more points fully independently. This is a superset of multitouch feature.

因此,假设您已在清单中请求多点触控(您应该这样做),您不能依赖硬件来支持多于两次的触控。

如果三点触控是绝对必要的,那么您可以使用 android.hardware.touchscreen.multitouch.jazzhand 来代替,它可以保证五点触控。不幸的是,似乎没有使用清单来请求 3 次或更多次不同触摸的方法。