我想打开然后关闭。我试过这种方式:
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
swtch.setChecked(true);
try {
Thread.sleep(200);
} catch (InterruptedException e) {
e.printStackTrace();
}
swtch.setChecked(false);
}
开关将变为蓝色但不会向右移动。在200毫秒后,它将再次变为灰色。它还说整个时间都关闭。如何让开关转到ON并再次关闭?