我使用此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();
}
我已尝试Thread sleep
,AnimationDrawable
,Timer
和TimerTask
。
但它并没有解决我的问题。