我想在我的 android 应用程序中进行多点触控拖放。
我的要求是当用户使用两根手指时,只需拖动即可。单图不拖。
我怎样才能做到这一点?
我的代码看起来像这样
if (pointerCount == 2) {
switch (motionEvent.getAction() & MotionEvent.ACTION_MASK) {
case MotionEvent.ACTION_DOWN:
//what should i write here?
break;
case MotionEvent.ACTION_MOVE:
//what should i write here?
我应该为每个事件案例写什么。
任何有用的链接?