我正在尝试使用字符串变量从 strings.xml 中定义的字符串数组中获取值。
例如,我在 strings.xml 中有两个字符串数组,称为“a_test_arrays”和“b_test_arrays”
在我的代码中,我基于随机选择一个字符串可以保存为“a_test”或“b_test”
String test;
//Randomly determine value of test. test = "a_test" or test = "b_test"
String[] test_array;
//get the selected array and store it's contents in test_array
//test_array = test + "_arrays";
我一直在尝试使用资源标识符,但我完全被难住了。