我开发的应用程序需要支持多种语言,如果语言是RTL,我必须应用自定义字体。根据要求,我创建了extends Application
的班级。一切都很完美,直到我有 Oreo 版本设备(在我启用Marshmellow设备之前)。在奥利奥,如果我们想要更改语言,我们必须创建一个自定义ContextWrapper
类,这里就会出现问题。
Calligraphy
,我们需要Override
attachBaseContext
方法。和Override
attachBaseContext
我尝试在super.attachBaseContext
方法中拨打Overrided
两次一个用于书法,其他用于语言代码,如下所示。
@Override
protected void attachBaseContext(Context newBase) {
// create or get your new Locale object here.
String lang = Preferences
.getSharedPreferenceString(appContext, LANGUAGE_KEY, "ar");
Context context = MyContextWrapper.wrap(newBase, lang);
super.attachBaseContext(context);
super.attachBaseContext(CalligraphyContextWrapper.wrap(newBase));
}
它给出了IllegalStateException,因为我们可以附加一次基本上下文。
super.attachBaseContext(context);
语言更改有效但书法没有。 super.attachBaseContext(CalligraphyContextWrapper.wrap(newBase));
书法作品但语言改变则没有。在这种情况下,我怎样才能完成所有工作(书法+多语言)。我已经查看了很多帖子/教程,但我现在已经坚持了三天。
请帮我完成此操作。感谢
修改参考
寻找能够使用书法和更改语言功能的自定义字体的解决方案。或者提供一种方法,以便我可以将语言和应用字体更改为整个应用程序。
注意:该解决方案必须与最新版本27的API 17兼容。我使用AppCompat
。
答案 0 :(得分:7)
我为oreo做了
在您的活动中:
@Override
protected void attachBaseContext(Context newBase) {
super.attachBaseContext(CalligraphyContextWrapper.wrap(SLocaleHelper.onAttach(newBase)));
}
或强>
@Override
protected void attachBaseContext(Context newBase) {
super.attachBaseContext(ViewPumpContextWrapper.wrap(SLocaleHelper.onAttach(newBase)));
}
在您的应用程序主类:
@Override
protected void attachBaseContext(Context base) {
super.attachBaseContext(SLocaleHelper.onAttach(base, "sv"));
MultiDex.install(this);
}
位置助手类:
package com.......;
import android.annotation.TargetApi;
import android.content.Context;
import android.content.SharedPreferences;
import android.content.res.Configuration;
import android.content.res.Resources;
import android.os.Build;
import android.preference.PreferenceManager;
import java.util.Locale;
public class SLocaleHelper {
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;
}
}
答案 1 :(得分:0)
你有没试过两次包装
@RestController
public class HelloController {
@RequestMapping("/monday")
public ResponseEntity<DayOfWeek> monday() {
return new ResponseEntity<DayOfWeek>(DayOfWeek.MONDAY, HttpStatus.OK);
}
@RequestMapping("/days")
public ResponseEntity<List<DayOfWeek>> days() {
return new ResponseEntity<List<DayOfWeek>>(Arrays.asList(DayOfWeek.values()), HttpStatus.OK);
}
}
答案 2 :(得分:0)
关于 SG 的答案,请注意,新的书法框架
https://github.com/chrisjenx/Calligraphy
所需的设置稍有不同,因为attachBaseContext
现在需要ViewPumpContextWrapper
而不是旧的CalligraphyContextWrapper
。
因此,“活动”中的新呼叫(在Kotlin中)如下所示:
override fun attachBaseContext(newBase: Context) {
super.attachBaseContext(ViewPumpContextWrapper
.wrap(LocaleHelper.onAttach(newBase)))
}
答案 3 :(得分:0)
@Override
protected void attachBaseContext(Context newBase) {
ContextWrapper localeContextWrapper = LocaleManager.wrap(newBase, "en");
ContextWrapper calligraphyContextWrapper = CalligraphyContextWrapper.wrap(localeContextWrapper);
super.attachBaseContext(calligraphyContextWrapper);
}
LocaleManager.java
public class LocaleManager {
public static ContextWrapper wrap(Context context, String language) {
Resources res = context.getResources();
Configuration configuration = res.getConfiguration();
Locale newLocale = new Locale(language);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
configuration.setLocale(newLocale);
LocaleList localeList = new LocaleList(newLocale);
LocaleList.setDefault(localeList);
configuration.setLocales(localeList);
context = context.createConfigurationContext(configuration);
} else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
configuration.setLocale(newLocale);
context = context.createConfigurationContext(configuration);
} else {
configuration.locale = newLocale;
res.updateConfiguration(configuration, res.getDisplayMetrics());
}
return new ContextWrapper(context);
}
}