我對Java很陌生。所以請原諒我問這樣一個簡單的問題。使用變量來指定R對象
要設置視圖的背景圖像,我可以做到這一點的
int TheButton = R.drawable.button1;
button.setBackgroundResource(TheButton);
但如何才能做到這一點,如果我想用一個變量來指定將R對象?
int a = 1;
int TheButton = R.drawable["button"+a]; //this is what I'll do in javascript...
button.setBackgroundResource(TheButton);