Android中的本地化,不依赖于设备语言

时间:2011-10-20 05:42:14

标签: android

是否可以创建独立于设备语言的本地化Android应用程序。例如在.net中我们将CurrentCultureCurrentUICulture设置为指定的语言,这在android中是否可行?目标是创建一个多语言的Android应用程序。

1 个答案:

答案 0 :(得分:1)

refer to this answer

其他提示:

获取当前语言:

Locale.getDefault().getDisplayLanguage();

获取当前的区域设置

String locale = context.getResources().getConfiguration().locale.getDisplayName();

String locale = java.util.Locale.getDefault().getDisplayName();

阅读Localization strategies

上的这篇文章