我正在尝试为安卓开发一个基于as3的应用程序。当我将多点触控设置为使用
Multitouch.inputMode = MultitouchInputMode.GESTURE;命令,我不能用一根手指使用任何鼠标事件,尽管我的设备支持所有触摸事件类型。
trace("gesture support: "+ Multitouch.supportsGestureEvents +
" touch support: " + Multitouch.supportsTouchEvents);
gesture support: true touch support: true 根据as3类的引用,我必须像MultitouchInputMode.NONE一样把触摸事件当作鼠标事件来处理,而且我不能使用按钮的点击事件。在手势模式下使用鼠标事件有什么参数需要设置吗?
发布于 2014-01-29 07:32:41
在我们的应用程序中,我们使用MultitouchInputMode.TOUCH_POINT并正常获取鼠标事件,并自行实现手势。
https://stackoverflow.com/questions/15833349
复制相似问题