package com.proto.touchaction;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.view.MotionEvent;
import android.view.View;
public class TouchActionView extends View {
private int touchX=0; // タッチX座標
private int touchY=0; // タッチY座標
private int touchAction=-999; // タッチアクション
private int ballX=0; // ボールX座標
private int ballY=0; // ボールY座標
private int ballAction=-999; // ボールアクション
private int cnt=0; // 描画カウント
// コンストラクタ
public TouchActionView(Context context) {
super(context);
// 背景色の指定 (android.graphics.Colorの定義)
setBackgroundColor(Color.WHITE);
// フォーカス指定(タッチ操作受け取り)
setFocusable(true);
}
//描画
@Override
protected void onDraw(Canvas canvas) {
String str;
// 描画オブジェクトの生成
Paint paint=new Paint();
paint.setAntiAlias(true); // 文字の縁を滑らかに描く
paint.setTextSize(18); // 文字サイズ
paint.setColor(Color.MAGENTA); // 文字色
// 描画カウント
++cnt;
canvas.drawText("DrowCount="+cnt,0,20,paint);
// タッチアクションの描画
str="NONE";
if (touchAction==MotionEvent.ACTION_DOWN) str="ACTION_DOWN";
if (touchAction==MotionEvent.ACTION_MOVE) str="ACTION_MOVE";
if (touchAction==MotionEvent.ACTION_UP) str="ACTION_UP";
if (touchAction==MotionEvent.ACTION_CANCEL) str="ACTION_CANCEL";
canvas.drawText("タッチ操作: "+str,0,20*3,paint);
// タッチ座標の描画
canvas.drawText("タッチ座標:X="+touchX+", Y="+touchY,0,20*4,paint);
// トラックボールアクションの描画
str="NONE";
if (ballAction==MotionEvent.ACTION_DOWN) str="ACTION_DOWN";
if (ballAction==MotionEvent.ACTION_MOVE) str="ACTION_MOVE";
if (ballAction==MotionEvent.ACTION_UP) str="ACTION_UP";
if (ballAction==MotionEvent.ACTION_CANCEL) str="ACTION_CANCEL";
canvas.drawText("トラックボール操作: "+str,0,20*6,paint);
// トラックボール座標の描画
canvas.drawText("トラックボール座標:X="+ballX+", Y="+ballY,0,20*7,paint);
}
// タッチイベントの処理
@Override
public boolean onTouchEvent(MotionEvent event) {
touchX=(int)event.getX();
touchY=(int)event.getY();
touchAction=event.getAction();
return true;
}
// トラックボールイベントの処理
@Override
public boolean onTrackballEvent(MotionEvent event) {
ballX=(int)(event.getX()*100);
ballY=(int)(event.getY()*100);
ballAction=event.getAction();
return true;
}
}
|