我有一个 ImageButton,当我按下它并按住手指时它变得不可见,当我抬起手指时它又变得可见。
但是当我按下按钮并且当我的手指向下时我将它从它移开并将它抬起它不会再次变得可见
代码看起来像这样
final ImageButton b=(ImageButton)findViewById(R.id.timer_btn);
b.setOnTouchListener(new View.OnTouchListener() {
public boolean onTouch(View v, MotionEvent event) {
switch (event.getAction()) {
case MotionEvent.ACTION_UP:
b.setVisibility(View.VISIBLE);
Log.w("app", "Action up");
return true;
case MotionEvent.ACTION_DOWN:
b.setVisibility(View.INVISIBLE);
Log.w("app", "Action down");
}
return false;
}
});
我尝试使用
case MotionEvent.ACTION_OUTSIDE:
b.setVisibility(View.VISIBLE);
Log.w("app", "Action outside");
}
但它不起作用,无论它是在按钮外部还是内部,它都会被调用