我想编写一个简单的应用程序,在指定的时间间隔内不断地将其颜色从红色变为蓝色,因此它可以模拟警笛。但我不知道如何编码,所以应用程序将改变它的颜色。
这是我尝试过的,当然它不能工作......
LinearLayout mainBackground;
String currentColor = "Blue";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mainBackground = (LinearLayout) findViewById(R.id.mainBackgroundID);
while(true) {
sleep(250);
if (currentColor.equals("Blue")) {
currentColor = "Red";
mainBackground.setBackgroundColor(0xFFFF0000);
} else {
currentColor = "Blue";
mainBackground.setBackgroundColor(0xFF0008FF);
}
}
}