我可以使用以下代码更改我的应用的区域设置:
public static void setLocale(Locale locale)
{
Locale.setDefault(locale);
Configuration appConfig = new Configuration();
appConfig.locale = locale;
App.context().getResources().updateConfiguration
(appConfig,App.context().getResources().getDisplayMetrics());
}
但如何与其他任何应用程序一起使用?
答案 0 :(得分:1)
完成!!!
我正在向其他用户分享我的代码!它采用英语语言环境中当前活动应用程序的名称:
public static void setLocale(Locale locale, String packageName)
{
try
{
Context myAppContext = App.context();
Context otherAppContext = myAppContext.createPackageContext(packageName, myAppContext.CONTEXT_IGNORE_SECURITY);
Locale.setDefault(locale);
Configuration appConfig = new Configuration();
appConfig.locale = locale;
otherAppContext.getResources().updateConfiguration(appConfig, App.context().getResources().getDisplayMetrics());
}
catch(Throwable t){History.Error(t);}
}
public static String getActive()
{
try
{
PackageManager pm = App.context().getPackageManager();
ActivityManager am = (ActivityManager) App.context().getSystemService(App.context().ACTIVITY_SERVICE);
RunningTaskInfo taskInfo = am.getRunningTasks(1).get(0); // The first in the list of RunningTasks is always the foreground task.
String packageName = taskInfo.topActivity.getPackageName();
setLocale(new Locale("en-US"), packageName);
PackageInfo appInfo = pm.getPackageInfo(packageName, 0);
String label = appInfo.applicationInfo.loadLabel(pm).toString();
App.Toast(label);
return label;
}
catch (Throwable t){History.Error(t);}
return "???";
}