展会信息港展会大全

Android开发用UncaughtExceptionHandler 捕获全局异常
来源:互联网   发布日期:2016-01-19 12:29:34   浏览:1508次  

导读:public class CrashHandler implements UncaughtExceptionHandler {public static final String TAG = CrashHandler;private static CrashHandler INSTANCE = new CrashHandler();private C ...

public class CrashHandler implements UncaughtExceptionHandler {

public static final String TAG = "CrashHandler";

private static CrashHandler INSTANCE = new CrashHandler();

private Context mContext;

private Thread.UncaughtExceptionHandler mDefaultHandler;

private CrashHandler() {

}

public static CrashHandler getInstance() {

return INSTANCE;

}

public void init(Context ctx) {

mContext = ctx;

mDefaultHandler = Thread.getDefaultUncaughtExceptionHandler();

Thread.setDefaultUncaughtExceptionHandler(this);

}

@Override

public void uncaughtException(Thread thread, Throwable ex) {

// if (!handleException(ex) && mDefaultHandler != null) {

// mDefaultHandler.uncaughtException(thread, ex);

// } else {

// android.os.Process.killProcess(android.os.Process.myPid());

// System.exit(10);

// }

System.out.println("uncaughtException");

new Thread() {

@Override

public void run() {

Looper.prepare();

new AlertDialog.Builder(mContext).setTitle("提示").setCancelable(false)

.setMessage("程序崩溃了...").setNeutralButton("我知道了", new OnClickListener() {

@Override

public void onClick(DialogInterface dialog, int which) {

System.exit(0);

}

})

.create().show();

Looper.loop();

}

}.start();

}

/**

* 自定义错误处理,收集错误信息 发送错误报告等操作均在此完成. 开发者可以根据自己的情况来自定义异常处理逻辑

*

* @param ex

* @return true:如果处理了该异常信息;否则返回false

*/

private boolean handleException(Throwable ex) {

if (ex == null) {

return true;

}

// new Handler(Looper.getMainLooper()).post(new Runnable() {

// @Override

// public void run() {

// new AlertDialog.Builder(mContext).setTitle("提示")

// .setMessage("程序崩溃了...").setNeutralButton("我知道了", null)

// .create().show();

// }

// });

return true;

}

}

赞助本站

人工智能实验室
AiLab云推荐
展开

热门栏目HotCates

Copyright © 2010-2024 AiLab Team. 人工智能实验室 版权所有    关于我们 | 联系我们 | 广告服务 | 公司动态 | 免责声明 | 隐私条款 | 工作机会 | 展会港