3

我已经在我的 android 应用程序中实现了本地化,但我有一个小问题。我无法从默认 strings.xml 文件中检索字符串的默认值。例如。里面 project/res/values/strings.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
        <string name="distance">distance</string>
</resources>

和里面project/res/values-nl/strings.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>

  <string name="distance">afstand</string>
</resources>

我的要求是从 project/res/values/strings.xml 文件中获取“距离”变量的值,而不管当前使用的是哪个语言环境。

4

1 回答 1

0

我们可以使用上下文配置来完成它,它将在 API +17 中运行,例如:

public static String getDefaultString(Context context, @StringRes int stringId){
        Resources resources = context.getResources();
        Configuration configuration = new Configuration(resources.getConfiguration());
        Locale defaultLocale = new Locale("en"); // default locale
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
            LocaleList localeList = new LocaleList(defaultLocale);
            configuration.setLocales(localeList);
            return context.createConfigurationContext(configuration).getString(stringId);
        } else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1){
            configuration.setLocale(defaultLocale);
            return context.createConfigurationContext(configuration).getString(stringId);
        }
        return context.getString(stringId);
    }

对于早期版本的 Android,您可以使用以下内容:

public static String getDefaultString(Context context, @StringRes int stringId){
  Resources resources = context.getResources();
  Locale defaultLocale = new Locale("en");// default locale
  configuration.locale = newLocale;
  resources.updateConfiguration(configuration, res.getDisplayMetrics());
  return resources.getString();
}

但我想它可以改变应用程序中的当前上下文。而且如果你不使用应用程序中的默认语言,本地化就会出现问题。

于 2017-12-15T13:44:49.270 回答