| | |
| | | /** |
| | | * 重启app |
| | | */ |
| | | // private void restartApp(Context context) { |
| | | // try { |
| | | private void restartApp(Context context) { |
| | | try { |
| | | // MobclickAgent.onKillProcess(context); |
| | | // Intent intent = new Intent(context, StartActivity.class); |
| | | // intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK); |
| | | // context.startActivity(intent); |
| | | // killAppProcess(context); |
| | | // } catch (Exception e) { |
| | | // String a = e.getMessage(); |
| | | // } |
| | | // } |
| | | SystemClock.sleep(300); |
| | | Intent intent = new Intent(context, StartActivity.class); |
| | | intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK); |
| | | context.startActivity(intent); |
| | | killAppProcess(context); |
| | | } catch (Exception e) { |
| | | String a = e.getMessage(); |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 关掉app所有进程 |