Android Layout Direction未在运行时语言更改时更新

时间:2018-04-20 12:22:53

标签: android android-layout localization android-configchanges

我正在开发一个支持两种不同语言的应用程序 -

  1. 阿拉伯
  2. 用户可以随时切换到任何语言。基于选择,我正在改变应用程序语言。

    下面提到的是代码段 -

    public static void setLocale(String languageCode, Context ctx) {
    
        Locale locale = new Locale(languageCode);
        Locale.setDefault(locale);
    
        if (Build.VERSION.SDK_INT >= VERSION_CODES.N) {
            updateResourcesLocale(ctx, locale);
        } else {
            updateResourcesLocaleLegacy(ctx, locale);
        }
    }
    
    
    private static void updateResourcesLocale(Context context, Locale locale) {
        Configuration configuration = context.getResources().getConfiguration();
        configuration.setLocale(locale);
        context.getApplicationContext().createConfigurationContext(configuration);
    }
    
    private static void updateResourcesLocaleLegacy(Context context, Locale locale) {
        Resources resources = context.getResources();
        Configuration configuration = resources.getConfiguration();
        configuration.locale = locale;
        configuration.setLayoutDirection(locale);
        resources.updateConfiguration(configuration, resources.getDisplayMetrics());
    }
    

    此外,在应用程序的每个活动中,我都覆盖了 attachBaseContext 方法。我在其中使用了以下逻辑 -

    @Override
    protected void attachBaseContext(Context base) {
        super.attachBaseContext(ContextWrapper.onAttach(base, LanguageUtil.getSelectedLanguageFromSharedPreferences(base)));
    }
    

    这是实用工具类 -

    public class ContextWrapper {
    
    private static final String SELECTED_LANGUAGE = "Locale.Helper.Selected.Language";
    
        public static Context onAttach(Context context, String defaultLanguage) {
        persist(context, defaultLanguage);
        String lang = getPersistedData(context, defaultLanguage);
        return setLocale(context, lang);
    }
    
       private static Context setLocale(Context context, String language) {
        persist(context, language);
    
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
            return updateResources(context, language);
        }
    
        return updateResourcesLegacy(context, language);
    }
    
    private static String getPersistedData(Context context, String defaultLanguage) {
        SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(context);
        return preferences.getString(SELECTED_LANGUAGE, defaultLanguage);
    }
    
    private static void persist(Context context, String language) {
        SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(context);
        SharedPreferences.Editor editor = preferences.edit();
    
        editor.putString(SELECTED_LANGUAGE, language);
        editor.apply();
    }
    
    @TargetApi(Build.VERSION_CODES.N)
    private static Context updateResources(Context context, String language) {
        Locale locale = new Locale(language);
        Locale.setDefault(locale);
    
        Configuration configuration = context.getResources().getConfiguration();
        configuration.setLocale(locale);
        configuration.setLayoutDirection(locale);
    
        return context.createConfigurationContext(configuration);
    }
    
    @SuppressWarnings("deprecation")
    private static Context updateResourcesLegacy(Context context, String language) {
        Locale locale = new Locale(language);
        Locale.setDefault(locale);
    
        Resources resources = context.getResources();
    
        Configuration configuration = resources.getConfiguration();
        configuration.locale = locale;
    
        resources.updateConfiguration(configuration, resources.getDisplayMetrics());
    
        return context;
    }
    

    问题是 - 如果我切换到阿拉伯语,布局方向将变为RTL&这是预料之中的。然后我又把我的语言换成了英语。但是这次,布局方向没有更新。它仍然是RTL,但它应该是LTR。此时,如果我将语言更改为阿拉伯语,布局方向将转到LTR,这也是错误的。我在清单文件的应用程序代码中添加了以下属性 -

    android:supportsRtl="true"
    

    另外,我已经用start& amp;替换了所有左对齐正确的对齐方式。

    调试时发现布局方向正确保存。然而,它没有在UI中反映出来。

    我的minSdkVersion 19 & targetSdkVersion 27

    我被困在这个&无法解决此问题。这里有什么我想念的吗?

1 个答案:

答案 0 :(得分:3)

最后经过多次审判和试用错误,我已经通过在调用setContentView 之前在所有活动onCreate方法中添加以下代码来修复此问题。

   public Object readResolve() {
      System.out.println("Executing readResolve");
      return this; 
   }