私はマルチタッチについて検索しました & 私は関連する多くの例を得ました
pic ズームイン & ズームアウト &
複数のタッチ座標を取得しますが、
マルチタッチを使用してビューに円を描画したい..これを試しましたが、描画すると座標が変更され、画面に触れた正確な場所に円が描画されませんでした..
ここにコードがあります....
public class TestMultiTouchActivity extends Activity {
public class MultiTouchView extends View {
// In this test, handle maximum of 2 pointer
final int MAX_POINT_CNT = 2;
private Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);
float[] x = new float[MAX_POINT_CNT];
float[] y = new float[MAX_POINT_CNT];
boolean[] isTouch = new boolean[MAX_POINT_CNT];
public MultiTouchView(Context context) {
super(context);
// TODO Auto-generated constructor stub
}
@Override
protected void onDraw(Canvas canvas) {
// TODO Auto-generated method stub
if (isTouch[0]) {
paint.setStyle(Paint.Style.STROKE);
paint.setStrokeWidth(1);
paint.setColor(Color.RED);
// canvas.drawCircle(x[0], y[0], 50f, paint);
}
if (isTouch[1]) {
paint.setStyle(Paint.Style.STROKE);
paint.setStrokeWidth(1);
paint.setColor(Color.BLUE);
// canvas.drawCircle(x[1], y[1], 50f, paint);
}
float x1 = (Math.abs((x[0] - x[1]))) / 2;
float y1 = (Math.abs((y[0] - y[1]))) / 2;
float r = Math.abs(x1 - x[0]);
canvas.drawCircle(x1, y1, r, paint);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
// TODO Auto-generated method stub
setMeasuredDimension(MeasureSpec.getSize(widthMeasureSpec),
MeasureSpec.getSize(heightMeasureSpec));
}
@Override
public boolean onTouchEvent(MotionEvent motionEvent) {
// TODO Auto-generated method stub
int pointerIndex = ((motionEvent.getAction() & MotionEvent.ACTION_POINTER_ID_MASK) >> MotionEvent.ACTION_POINTER_ID_SHIFT);
int pointerId = motionEvent.getPointerId(pointerIndex);
int action = (motionEvent.getAction() & MotionEvent.ACTION_MASK);
int pointCnt = motionEvent.getPointerCount();
if (pointCnt <= MAX_POINT_CNT) {
if (pointerIndex <= MAX_POINT_CNT - 1) {
for (int i = 0; i < pointCnt; i++) {
int id = motionEvent.getPointerId(i);
x[id] = (int) motionEvent.getX(i);
y[id] = (int) motionEvent.getY(i);
}
switch (action) {
case MotionEvent.ACTION_DOWN:
isTouch[pointerId] = true;
break;
case MotionEvent.ACTION_POINTER_DOWN:
isTouch[pointerId] = true;
break;
case MotionEvent.ACTION_MOVE:
isTouch[pointerId] = true;
break;
case MotionEvent.ACTION_UP:
isTouch[pointerId] = false;
break;
case MotionEvent.ACTION_POINTER_UP:
isTouch[pointerId] = false;
break;
case MotionEvent.ACTION_CANCEL:
isTouch[pointerId] = false;
break;
default:
isTouch[pointerId] = false;
}
}
}
invalidate();
return true;
}
}
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(new MultiTouchView(this));
}