Imアクティビティ内でOnTouchイベントを処理しようとしましたが、MotionEvent.ACTION_UPアクションを処理できません。ここに私のコードです:アクティビティ内でOnTouchイベントを処理する
boardView.setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
switch (event.getAction())
{
case MotionEvent.ACTION_DOWN:
showToastNotification("ACTION_DOWN");
break;
case MotionEvent.ACTION_MOVE:
break;
case MotionEvent.ACTION_UP:
showToastNotification("ACTION_UP");
break;
}
return false;
}
});
なぜそれですか?事前に
おかげ
コビ
より多くのコンテキストが必要... – Rich
トーストはデバッグするのに適していません。ログを使用します。 – Falmarri