我想在崩溃后重启我的Android应用程序。我的问题是当我想通过调用方法手动关闭应用程序时它也会重新启动:finish();
PendingIntent _pendingInt;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.readings_main);
//create pending intent, which starts the Application
this._pendingInt=PendingIntent.getActivity(MyApplication.getInstance().getBaseContext(), 0,
new Intent(getIntent()), getIntent().getFlags());
// start handler which starts pending-intent after Application-Crash
Thread.setDefaultUncaughtExceptionHandler(new CustomExceptionHandler(this._pendingInt, this.getApplicationContext()));
}
我的CustomExceptionHandler:
public class CustomExceptionHandler implements UncaughtExceptionHandler {
private PendingIntent _penIntent;
Context cont;
/**
* Constructor
* @param intent
* @param cont
*/
public CustomExceptionHandler(PendingIntent intent, Context cont) {
this._penIntent = intent;
this.cont=cont;
}
public void uncaughtException(Thread t, Throwable e) {
AlarmManager mgr = (AlarmManager) cont.getSystemService(Context.ALARM_SERVICE);
mgr.set(AlarmManager.RTC, System.currentTimeMillis() + 60000, this._penIntent);
System.exit(2);
}
}
因此,当我通过Menu-Option finish()调用时,应用程序会在1分钟后启动。
答案 0 :(得分:1)
要明确的是,如果应用程序崩溃,您需要重新启动应用程序,但如果您手动关闭它,则不想重新启动它。我做对了吗?
我不是这方面的专家,但我的猜测是指定一个自定义异常处理程序会延迟系统消除你的应用程序直到它可以调用onDestroy()。这意味着无论您的活动如何结束,您都会经历相同的生命周期。
也许有办法解决这个问题。您可以通过在onPause()中调用onFinishing()来检测您的应用是否正在完成。如果此时禁用了customExceptionHandler,它将不会尝试重新启动应用程序。