See*_*tha 5 android button android-layout
My Android button color is blue. I want to change the button color to red for 5 seconds. After 5 seconds, I need to change the button color back to blue.
Here is my code
new Handler().postDelayed(new Runnable() {
public void run() {
eyesOnchkBtn.setBackgroundColor(Color.RED);
}
}, 5000);
eyesOnchkBtn.setBackgroundColor(Color.BLUE); // It wont change the color button as normal
Run Code Online (Sandbox Code Playgroud)
希望以下代码能有所帮助
eyesOnchkBtn.setBackgroundColor(Color.RED);
new CountDownTimer(5000, 50) {
@Override
public void onTick(long arg0) {
// TODO Auto-generated method stub
}
@Override
public void onFinish() {
eyesOnchkBtn.setBackgroundColor(Color.BLUE);
}
}.start();
Run Code Online (Sandbox Code Playgroud)