我很抱歉,如何停止button.performClick();
当我运行我的程序时,我调用了button.performClick();
,但按钮单击不会在语句中停止。和我的消息来源:
new Handler().postDelayed(new Runnable() {
public void run() {
button.performClick();
}
},(3*1000));
if (accuracy<=15){
button.setClickable(false);
}
我想要准确度 <= 15 tombol stop performClick();
。performClick();
因为我制作而停止的真正语法button.setClickable(false);
是错误的。而条件语句为真。