作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我想在安卓屏幕上检测三指点击。我最多可以检测两根手指。如何检测三指呢?我听说安卓可以检测两根手指。是这样吗?
最佳答案
此代码可以帮助您:
public boolean onTouchEvent(MotionEvent event)
{
int action = event.getAction();
switch(action & MotionEvent.ACTION_MASK)
{
case MotionEvent.ACTION_POINTER_DOWN:
// multitouch!! - touch down
int count = event.getPointerCount(); // Number of 'fingers' in this time
break;
}
}
关于android - 如何在android中识别三指点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7840854/
我是一名优秀的程序员,十分优秀!