标签: android
在Android中,可以使用以下命令定义i18n字符串:
values/strings.xml values-de/strings.xml
并在xml中使用它们: android:text="@string/hello"
android:text="@string/hello"
自动解析本地特定字符串。
但是:如何以编程方式实现相同目标?从样式定义加载字符串,自动进行正确的本地化?
答案 0 :(得分:2)
每当您使用String检索Context时,它都会返回与语言环境相关的内容。
String
Context
context.getString(R.string.hello);
您可以在文档here中看到更多信息。