android:在自定义xml中引用ressources

前端之家收集整理的这篇文章主要介绍了android:在自定义xml中引用ressources前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个多语言的 Android应用程序,我已经把不同的翻译在相应的目录中的strings.xml.

现在我也有一个自定义的xml文件,我想在这里引用这样的文本:

<?xml version="1.0" encoding="UTF-8"?>
<rooms>
    <room title="@+string/localizedtext" />
</rooms>

现在当我在代码中读取标题属性时,我显然得到了一个未解析的字符串“@ string / localized”.
是否可以以某种方式自动将此链接解析为本地化文本?

谢谢!

解决方法

差不多一年后
public static String getStringResource(Context context,String thingie) {
        try {
            String[] split = thingie.split("/");
            String pack = split[0].replace("@","");
            String name = split[1];
            int id = context.getResources().getIdentifier(name,pack,context.getPackageName());
            return context.getResources().getString(id);
        } catch (Exception e) {
            return thingie;
        }
    }

这样做

原文链接:https://www.f2er.com/android/310341.html

猜你在找的Android相关文章