android重新启动应用程序和重新启动系统

时间:2022-12-02 16:42:13

近日,由于项目需求,需要重新启动应用程序,所以就请教了我们公司的一班android大神。

 

重新启动应用程序,有两种方法,分别是:

1.通过ActivityManager来重新启动应用程序:

ActivityManager manager = (ActivityManager)this.getSystemService(Context.ACTIVITY_SERVICE);
manager.restartPackage("com.example.test");


2.通过flag来实现:

Intent intent = new Intent();
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(intent);

 

重新启动系统的方法有:
PowerManager manager = (PowerManager)this.getSystemService(Context.POWER_SERVICE);manager.reboot("重新启动系统");