我有一个问题,一个技术问题。我有一个列表视图,当我点击一个项目时,我获得该特定位置的内容并通过'putExtra'将其发送到下一个活动
在接下来的活动中,我正在做的是
String item;
Bundle extras = getIntent().getExtras();
if (extras != null) {
item = extras.getString("item");
}
现在让我们说 item =“Java”;
现在我想要的是 termsArray = getResources()。getStringArray(R.array.Java);
但我不想要R.array.Java,我想要像R.array这样的东西。 item
XML中的字符串数组
<string-array name="Java">
<item>A</item>
<item>B</item>
<item>C</item>
</string-array>
<string-array name="C">
<item>A</item>
<item>B</item>
<item>C</item>
</string-array>
<string-array name="php">
<item>A</item>
<item>B</item>
<item>C</item>
</string-array>
我可以使用IF-else执行此任务但是我有很多字符串数组,所以不可能使用IF-else
答案 0 :(得分:15)
尝试:
String item;
Bundle extras = getIntent().getExtras();
if (extras != null) {
item = extras.getString("item");
int arryid = this.getResources().getIdentifier(item, "array",
this.getPackageName());
termsArray = this.getResources().getStringArray(arryid);
}