如何从某个文件中获取字符串资源?

发布于 2024-09-05 08:07:21 字数 205 浏览 5 评论 0原文

我在 res/values 目录中有两个资源文件: string.xml 和名称.xml

如何从名称.xml 中检索所有资源只有

该方法

Field[] x=R.string.class.getFields();

从这两个文件中检索资源。

如何实现这个目标,

谢谢

I have two resources file in res/values directory: string.xml and names.xml

how can I retreive all resources from names.xml only

the method

Field[] x=R.string.class.getFields();

retrieves resources from both files.

how can this be acheived

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

皓月长歌 2024-09-12 08:07:30

抱歉,但那是不可能的。将字符串拆分为多个命名资源文件并不重要——Android 在编译项目时将它们全部组合起来。

欢迎您使用前缀或其他东西来区分一组字符串和另一组字符串。我使用 Android Parcel 项目 的支持代码来实现这一点,以允许可重用​​组件每个定义字符串,而无需覆盖字符串另一个。

I am sorry, but that is not possible. It does not matter that you have your strings split between multiple named resource files -- Android combines them all when it compiles your project.

You are welcome to use prefixes or something to identify one set of strings from another. I do that with the support code for the Android Parcel Project, to allow reusable components to each define strings without one overwriting the strings of another.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文