4

我有一个问题,一个技术问题。我有一个列表视图,当我单击一个项目时,我会在该特定位置获取内容并通过“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 这样的东西。物品

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

4

1 回答 1

16

尝试:

 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);
        }
于 2012-07-27T10:12:51.990 回答