您的位置:首页 > 移动开发

Android开发之app崩溃后捕获异常或自动重启

2016-08-14 18:39 2056 查看
<span style="font-size:14px;"> 实现APP崩溃后自动重启或者捕获异常信息:
package com.tan.abnormalrestart;
import java.lang.Thread.UncaughtExceptionHandler;
import android.app.Application;
import android.content.Intent;

public class AppContext extends Application
{
protected static AppContext instance;
public void onCreate() {
super.onCreate();
instance = this;
Thread.setDefaultUncaughtExceptionHandler(restartHandler); // 程序崩溃时触发线程  以下用来捕获程序崩溃异常
}
// 创建服务用于捕获崩溃异常
private UncaughtExceptionHandler restartHandler = new UncaughtExceptionHandler() {
public void uncaughtException(Thread thread, Throwable ex) {
restartApp();//发生崩溃异常时,重启应用
}
};
public void restartApp(){
Intent intent = new Intent(instance,MainActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
instance.startActivity(intent);
android.os.Process.killProcess(android.os.Process.myPid());  //结束进程之前可以把你程序的注销或者退出代码放在这段代码之前
}
}  </span>

这个是application级别的应用!

其实关键还是UncaughtExceptionHandler类!
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息