我在做一个支持两种语言的应用程序-
1.英语
1.阿拉伯语
用户可以在任何时候切换到任何语言&基于选择,我正在更改应用程序语言。
下面是代码片段-
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());
}
另外,在应用程序的每个Activity中,我都覆盖了attachBaseContext方法。我用了下面的逻辑-
@Override
protected void attachBaseContext(Context base) {
super.attachBaseContext(ContextWrapper.onAttach(base, LanguageUtil.getSelectedLanguageFromSharedPreferences(base)));
}
这是Utility类-
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这又是错误的。我在manifest文件的application标签中添加了以下属性-
android:supportsRtl="true"
此外,我已经将所有**左对齐替换为开始,右对齐替换为结束。
调试时,观察到布局方向正确保存。但是它没有反映在UI中。
我的minSdkVersion 19 & targetSdkVersion 27
我被困在这个&无法解决这个问题。有什么我遗漏的吗?
2条答案
按热度按时间ubby3x7f1#
最后,经过大量的试验和错误,我已经解决了这个问题,在所有活动中添加下面的代码onCreate方法之前setContentView被调用。
vcudknz32#
在布局
android:layoutDirection="locale"
上添加这个code on top属性,而不是在java文件中添加那么多代码