Thread.UncaughtExceptionHandler捕获未知异常

在Android开发中,常常会出现uncheched Exception 导致程序的crash,为了提供良好的用户体验,并对出错的信息进行收集,以便对程序进行改进,提高程序的健壮性。因此,常使用Thread.UncaughtExceptionHandler来进行处理。

首先需要继承Thread.UncaughtExceptionHandler类

public class CrashHandler implements Thread.UncaughtExceptionHandler {  
    public static final String TAG = CrashHandler.class.getSimpleName();  
    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;  
    }  
}  
然后在Application类中进行注册
public class MyApplication extends Application{  
  
  
    @Override  
    public void onCreate(){  
    super.onCreate();  
        initErrorHandler();  
    }  
  
  
   private void initErrorHandler(){  
    CrashHandler handler = CrashHandler.getInstance();  
    handler.init(this);  
   }  
} 


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值