Java ImageButton背景不';不能实时改变

Java ImageButton背景不';不能实时改变,java,android,eclipse,for-loop,imagebutton,Java,Android,Eclipse,For Loop,Imagebutton,我使用这个for循环来更改ImageButton的背景: for(int i = 1 ; i <= right_num ; i++ ){ int resourceId = this.getResources().getIdentifier("c"+left_num+"_r"+i, "id", this.getPackageName()); ImageButton imageButton = (ImageButton) findViewById(resourceId);

我使用这个for循环来更改
ImageButton
的背景:

for(int i = 1 ; i <= right_num ; i++ ){
    int resourceId = this.getResources().getIdentifier("c"+left_num+"_r"+i, "id", this.getPackageName());
    ImageButton imageButton = (ImageButton) findViewById(resourceId);
    imageButton.setBackgroundResource(R.drawable.red_circle);
    sound();
}

for(int i=1;i使用适当的计时器可以解决问题-但由于您只显示了在完成之前阻止UI线程的版本,我们无法判断计时器尝试的错误。(不要忘记您需要在UI线程上执行代码…)请参阅示例。您可以发布问题的详细信息吗?您的其余代码也将非常棒。请完成您的答案。