从Android Java中的xml获取值

时间:2014-12-26 17:00:23

标签: java android xml

我创建了一个名为" constant.xml"的新xml文件。在文件夹值。

如何访问这些值?

该文件的构造类似于字符串xml。为此,我只需要

 getString(R.string.STRING_NAME).

但R.constant.STRING_NAME不可用。

1 个答案:

答案 0 :(得分:1)

您可以像访问strings.xml文件中那样访问字符串资源;位置不会影响您调用它们的能力。在您的情况下,您只需使用getString(R.string.STRING_NAME)即可访问字符串资源,就像使用位于strings.xml文件中的标准字符串一样。