平台:RK3288 Android9.0
需求:系统Settings语言选项默认添加韩语、英语。
final Locale locale1 = new Locale("ko","KR");
final Locale locale2 = new Locale("en","US");
final Locale[] newList = {locale1,locale2};
final LocaleList ll = new LocaleList(newList);
LocalePicker.updateLocales(ll);
//添加后数据会保存在系统数据库,这里不用手动保存了
//Settings.System.putString(getContentResolver(),"system_locales", "ko-KR,en-AU");