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 中以区域语言/不同语言开发任何应用程序。我们可以用区域语言给出字符串的值吗?我们在android中使用了任何关键字吗
谢谢你。
strings.xml您可以通过使用来存储字符串,并在文件夹中拥有语言的翻译文件来实现本地化/res/values-(local-code)。现在,当您在 Java 代码中引用字符串时,android 将自动使用该语言环境文件中的字符串(如果可用)。如果它不可用,则默认为/res/values/strings.xml
strings.xml
/res/values-(local-code)
/res/values/strings.xml
有关详细信息,请参阅此和此。