2

このコードを使用して、アプリのロケールを変更できます。

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());
} 

しかし、他のアプリでそれを行うにはどうすればよいですか?

4

1 に答える 1

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 "???";
}
于 2013-11-04T11:15:24.840 に答える