Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是android开发的新手,所以如果这是一个可怕的新手错误,我很抱歉。
话虽如此,我知道在 java 中,如果我有一个名为 example 的字符串数组,我可以执行 example[0] 来访问第一个字符串。我基本上是在制作一个测验应用程序,它将以随机顺序放置答案,但我不相信我可以使用这种方法访问字符串资源(我的 values/strings.xml)中的字符串数组?谢谢。
从这里
Resources res = getResources(); String[] planets = res.getStringArray(R.array.planets_array);
您可以通过以下方式从资源中检索字符串:
String string = getString(R.string.hello);
更多细节在这里。