嗨,我有一个应用程序,它加载一个网络视图,里面有一个FLOWING DRAWER。 我正在尝试更改语言环境。 我有一个
localeHelper
java 类和 AppClass
extends Application
但这并没有发生。
发生的情况是仅当我重新启动应用程序时区域设置才会更改
super.Onbackpressed()
但是当我杀死它时〜语言环境变回英语;它会重置
大约四天以来我一直很生气。
请帮助我,我是初学者;
localeHelp.java
public class LocaleHelper {
private static final String SELECTED_LANGUAGE = "Locale.Helper.Selected.Language";
public static Context onAttach(Context context) {
String lang = getPersistedData(context, Locale.getDefault().getLanguage());
return setLocale(context, lang);
}
public static Context onAttach(Context context, String defaultLanguage) {
String lang = getPersistedData(context, defaultLanguage);
return setLocale(context, lang);
}
public static String getLanguage(Context context) {
return getPersistedData(context, Locale.getDefault().getLanguage());
}
public 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;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
configuration.setLayoutDirection(locale);
}
resources.updateConfiguration(configuration, resources.getDisplayMetrics());
return context;
}
}
只需拨打电话 setLocale("fr"); 在MainActivity中使用这个函数
private void setLocale() {
Locale locale;
locale = new Locale("hi");
Locale.setDefault(locale);
Configuration config = new Configuration();
config.locale = locale;
getBaseContext().getResources().updateConfiguration(config,
getBaseContext().getResources().getDisplayMetrics());
Intent intent = getIntent();
finish();
startActivity(intent);}
问题:活动已重新创建,但语言仍然相同。 好吧,经过多次尝试和错误,这就是我要做的工作..
我把这段代码放在OnResume中
// todo load locale
Locale current = getResources().getConfiguration().locale;
// todo get the current locale
//Toast.makeText(MainActivity.this, ""+current, Toast.LENGTH_SHORT).show();
String currentLanginString = current.toString(); // convert current language to string
if(!currentLanginString.contains(wholeAppLanguage)) {
recreate();
// Toast.makeText(this, "recreatingResume", Toast.LENGTH_SHORT).show();
}
loadLocale();
然后我创建了 Loadlocale 函数
public void loadLocale (){
int langcode=0;
String a="a";
if (wholeAppLanguage.contains("hi")) {
langcode = 0;
a="hi";
}
else if (wholeAppLanguage.contains("en"))
{
langcode=1;
a="en";
}
setLocale2(langcode);
}
然后就完美了~
我也遇到了应用程序终止后语言重置的相同问题,但是,这个解决方案对我有用。
总结:
attachBaseContext
方法。