我对 Java 很陌生。所以请原谅我问了这么简单的问题。
要设置视图的背景图像,我可以通过
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);