代码如下:
Intent startMain = new Intent(mContext,tabView.class);//这里根据自己需要填写自己的class startMain.addCategory(Intent.CATEGORY_HOME); startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); mContext.startActivity(startMain); try {//原因目前不明,但不加的话就会关闭不了系统 Thread.sleep(1000); } catch (InterruptedException e) { Log.e(TAG, "Error : ", e); } android.os.Process.killProcess(android.os.Process.myPid());
添加权限<uses-permission android:name="android.permission.RESTART_PACKAGES" />
希望可以帮到大家。