找不到符号变量数组

时间:2015-12-15 14:06:50

标签: java android android-studio

在android studio中,我正在尝试创建一个包含不同屏幕包含信息的大学应用程序。我创建了一个抽屉但由于以下代码行无法将项目添加到抽屉中:

mApplicationOptions = getResources().getStringArray(R.array.application_options);

除了数组I get the error cannot find symbol variable array下的数组部分外,其他所有内容都在我的程序中运行。如何解决此问题,以便使用数组填充导航栏中的列表。

谢谢!

1 个答案:

答案 0 :(得分:0)

您是否在应用的资源中定义了数组?您可以通过在strings.xml中声明一个数组来完成此操作,例如:

<string-array name="application_options">
    <item>one</item>
    <item>two</item>
    <item>three</item>
</string-array>

文档HERE

我希望这有帮助,船长;)