我希望能够通过使用存储在变量中的名称来使用 java 中的对象。例如 :
String[] str={"name1","name2"};
Button name1 = (Button) findViewById(R.id.but1);
Button name2 = (Button) findViewById(R.id.but2);
//what i want to do is : instead of
name1.setText("TEXT");
//to use something like
Button.str[0].setText("TEXT");