找不到资源,该资源在Res> Values文件夹

问题描述

|中的另一个XML文件中声明。 找不到资源,该资源在Res> Values文件夹的另一个XML文件中声明。 我在
Res > questions.xml
中创建了一个名为
questions.xml
的字符串数组,在其中创建了问题和答案数组。 这些数组在编写代码“ 2”时被填充,但是在运行代码时在该行抛出“ 3”异常。 请给我解决方法。     

解决方法

        复制android开发指南:   res / values / filename.xml   文件名是任意的。元素的名称将用作资源ID。 确保您的xml包含正确命名的字符串数组。根据例子:
<?xml version=\"1.0\" encoding=\"utf-8\"?>
<resources>
    <string-array name=\"questions\">
        <item>How do I create a string array?</item>
        <item>Will this work?</item>
        <item>Why didn\'t I paste the whole xml in the question?</item>
    </string-array>
    <string-array name=\"answers\">
        <item>Like this</item>
        <item>Yep</item>
        <item>No idea</item>
    </string-array>
</resources>
您可以使用任何名称保存它,例如
res/values/whatevername.xml
,并在代码中将它们引用为
R.array.questions
R.array.answers
。 官方文档:http://developer.android.com/guide/topics/resources/string-resource.html