Android11 移除添加语言中的Suggested选项
有个需求就是移除 语言中的Suggested选项中的中文选项,不是移除中文语言
从设置里跟踪到此文件
frameworks/base/core/java/com/android/internal/app/LocaleStore.java
因为没有找到具体配置的地方, 所以修改如下:
@UnsupportedAppUsage
public static void fillCache(Context context) {
if (sFullyInitialized) {
return;
}
Set<String> simCountries = getSimCountries(context);
final boolean isInDeveloperMode = Settings.Global.getInt(context.getContentResolver(),
Settings.Global.DEVELOPMENT_SETTINGS_ENABLED, 0) != 0;
for (String localeId : LocalePicker.getSupportedLocales(context)) {
if (localeId.isEmpty()) {
throw new IllformedLocaleException("Bad locale entry in locale_config.xml");
}
LocaleInfo li = ne