i use this code for change ImageButton
image , but it not change at real-time.
it change one time only , not ImageButton
by ImageButton
.
for(int i = 1 ; i <= left_num ; i++ ){
int resourceId = this.getResources().getIdentifier("c"+i+"_r"+right_num, "id", this.getPackageName());
ImageButton imageButton = (ImageButton) findViewById(resourceId);
imageButton.setBackgroundResource(R.drawable.white_circle);
sleep(500);
}