无法找到给定语言环境的正确的strings.xml

时间:2019-02-14 07:11:17

标签: android localization locale android-resources

我在我的Android应用程序中支持印地语语言环境。为此,我在新的values-hi文件夹中添加了strings.xml。

此后,我将我的应用程序中单独的活动中的resource.configuration.locale设置为“ hi”。

当我调试将任何字符串设置到视图的位置时,我发现语言环境已经设置为“ hi”,但是在评估时

getString(R.string.title)从位于values文件夹中的默认strings.xml文件返回了默认值。

请帮助我解决该问题。

我要添加用于设置区域设置的区域设置管理器,

public class LocaleManager {

public static final  String LANGUAGE_ENGLISH   = "en";
private static final String LANGUAGE_KEY       = "language_key";

private final SharedPreferences prefs;

public LocaleManager(Context context) {
    prefs = PreferenceManager.getDefaultSharedPreferences(context);
}

public Context setLocale(Context c) {
    return updateResources(c, getLanguage());
}

public Context setNewLocale(Context c, String language) {
    persistLanguage(language);
    return updateResources(c, language);
}

public String getLanguage() {
    return prefs.getString(LANGUAGE_KEY, LANGUAGE_ENGLISH);
}

@SuppressLint("ApplySharedPref")
private void persistLanguage(String language) {
    // use commit() instead of apply(), because sometimes we kill the application process immediately
    // which will prevent apply() to finish
    prefs.edit().putString(LANGUAGE_KEY, language).commit();
}

private Context updateResources(Context context, String language) {
    Locale locale = new Locale(language);
    Locale.setDefault(locale);

    Resources res = context.getResources();
    Configuration config = new Configuration(res.getConfiguration());
    if (Utility.isAtLeastVersion(JELLY_BEAN_MR1)) {
        config.setLocale(locale);
        context = context.createConfigurationContext(config);
    } else {
        config.locale = locale;
        res.updateConfiguration(config, res.getDisplayMetrics());
    }
    return context;
}

public static Locale getLocale(Resources res) {
    Configuration config = res.getConfiguration();
    return Utility.isAtLeastVersion(N) ? config.getLocales().get(0) : config.locale;
}

}`

我还在Application.java和BaseActivity.java中添加了以下几行

@Override
protected void attachBaseContext(Context base) {

super.attachBaseContext(TBApplication.localeManager.setLocale(base));
    Log.d(TAG, "attachBaseContext");
}

0 个答案:

没有答案