如何使用普通动画打开Android开关然后关闭?

时间:2013-08-06 09:57:22

标签: android oncheckedchanged

我想打开然后关闭。我试过这种方式:

@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并再次关闭?

0 个答案:

没有答案