我正在实现一个简单的自定义视图,主要用于获取Android画布的挂起。这是一个简单的tictactoe板。
以下是自定义视图类:
public class BoardInterface extends View implements View.OnTouchListener{
private int board_width, board_height;
private final Context context;
public BoardInterface(Context context) {
super(context);
this.context = context;
}
@Override
protected void onDraw(Canvas canvas) {
board_width = canvas.getWidth();
board_height = canvas.getHeight();
Paint paint = new Paint();
paint.setColor(Color.BLUE);
paint.setStyle(Paint.Style.STROKE);
paint.setStrokeWidth(20);
canvas.drawLine((board_width/5)*2, (board_height/6), (board_width/5)*2, ((board_height/6)*5), paint);
canvas.drawLine(((board_width/5)*3), (board_height/6), ((board_width/5)*3), ((board_height/6)*5), paint);
canvas.drawLine((board_width/6), ((board_height/7)*3), ((board_width/6)*5), ((board_height/7)*3), paint);
canvas.drawLine((board_width/6), ((board_height/7)*4), ((board_width/6)*5), ((board_height/7)*4), paint);
super.onDraw(canvas);
}
@Override
public boolean onTouch(View v, MotionEvent event) {
int x, y;
Log.d("TOUCH", "WORKS");
if (event.getAction() == MotionEvent.ACTION_DOWN) {
x = (int) Math.floor(event.getX());
y = (int) Math.floor(event.getY());
Toast.makeText(context, String.valueOf(x) + "," + String.valueOf(y), Toast.LENGTH_SHORT).show();
}
return super.onTouchEvent(event);
}
}
我已经设置了OnTouchListener并覆盖它以显示简单的吐司。 屏幕上没有任何内容,即toas,也没有在logcat中获取Log.D()消息。
我在这里缺少什么?
答案 0 :(得分:1)
尝试使用以下方法覆盖而不是onTouch方法。
@Override
public boolean onTouchEvent(MotionEvent event){....}
如果触摸事件仍未在构造函数中的某处调用
setClickable(True);
答案 1 :(得分:0)
以上解决方案有效。
我还通过对代码进行一次更改[在构造函数中添加一行]来找到解决方案。
public BoardInterface(Context context) {
super(context);
this.context = context;
setOnTouchListener(this);
}
添加setOnTouchListener(this);
后,onTouch()方法执行得很好。