本文介绍了Android多点触控功能(最多6次触控)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想知道是否有可能制作一个同时具有多达6个触摸和多点触摸选项(而不仅仅是两个)的android应用程序.请您能帮我找到一些相关的文献吗?我在stackoverflow上找到了一些答案,但恐怕还不够.

I want to know if it is possible to make an android application that features up to 6 touches simultaneously with the multi-touch option (not just two). Please can u help me to find some relevant literature. I've found some answers here on stackoverflow, but i am afraid that that's not enough.

我将不胜感激.谢谢大家.

I would appreciate every help. Thank you all in advance.

推荐答案

支持爵士手"的设备最多可处理10个同时触摸.您的应用可以通过以下manifest元素要求爵士乐手的支持:

Devices that support "jazzhands" will handle up to 10 simultaneous touches. Your app can require jazzhands support via the following manifest element:

<uses-feature android:name="android.hardware.touchscreen.multitouch.jazzhand" />

并非所有设备都支持此功能-例如,Kindle Fire仅支持两个同时触摸的IIRC.

Not all devices will support this -- for example, the Kindle Fire only supports two simultaneous touches IIRC.

这篇关于Android多点触控功能(最多6次触控)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-20 07:19