因此,我正在構建一個實驗應用程序,其中背景將隨機更改顏色。Android應用程序強制關閉背景顏色變化?
我被卡在背景變化。
我有改變背景顏色的工作代碼,但是當我把它放在一個線程/ try和catch括號中時,應用程序被強制關閉並且不會給我一個錯誤?
這裏是在onCreate方法使用時,其工作方式代碼:
View view = this.getWindow().getDecorView();
view.setBackgroundColor(Color.RED);
但是,當我想讓它「睡眠」 1秒鐘,然後將其更改爲紅色,它彈了。
請注意,這個方法是一個與oncreate不同的方法,並且在那裏被調用,並且由於某種原因不起作用?
public void changeBackground(final View v){
Thread timer = new Thread(){
public void run(){
try{
sleep(1000);
}catch (InterruptedException e) {
e.printStackTrace();
}finally{
v.setBackgroundColor(Color.RED);
}
}
};
timer.start();
}
我在做什麼錯? 我需要的東西: 當應用程序啓動時,它必須等待1秒,然後更改背景顏色而不用轟炸。
提前致謝!