如何使用isPressed();
?
我需要做这样的事情:
if (btn1.isPressed){
//Do something
}
答案 0 :(得分:1)
使用 OnTouch 侦听器:
btn1.setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_DOWN ) {
// btn1 is pressed
return true;
}
return false;
}
});