我正在开发适用于6个国家/地区的I18N应用程序,有一个要求,例如,当用户从设置更改语言时,应用程序应重新启动并以更改的语言显示应用程序。因为我将语言值存储在共享首选项中并与当前语言值进行比较。如果值不相同,我需要重新启动应用程序。为此我使用下面的代码:
if (currentLanguage == null) {
Util.saveStringInSP(_activity, "LANGUAGE", languageValue);
}
else if (currentLanguage.equalsIgnoreCase(languageValue)) {
String currentLanguage = Util.getStringFromSP(_activity, "LANGUAGE");
}
else {
try {
android.os.Process.killProcess(android.os.Process.myPid());
}
catch(Exception e) { }
Intent i = new Intent();
PackageManager manager = getPackageManager();
i = manager.getLaunchIntentForPackage("com.pfizer.stablemate");
i.addCategory(Intent.CATEGORY_LAUNCHER);
startActivity(i);
}
请提供一段代码以编程方式重新启动Android应用程序。
答案 0 :(得分:3)
尝试:
Intent intent = getBaseContext().getPackageManager().getLaunchIntentForPackage(
getBaseContext().getPackageName() );
intent .addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
intent .addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);
startActivity(intent);
答案 1 :(得分:0)
尝试一下:
Intent mStartActivity = new Intent(context, Your_first_activity.class);
int mPendingIntentId = 123456;
PendingIntent mPendingIntent = PendingIntent.getActivity(context,
mPendingIntentId,mStartActivity, PendingIntent.FLAG_CANCEL_CURRENT);
AlarmManager mgr = (AlarmManager)context.getSystemService(Context.ALARM_SERVICE);
mgr.set(AlarmManager.RTC, System.currentTimeMillis() + 100, mPendingIntent);
System.exit(0);