美文网首页APP开发实战
APP开发实战97-Android异常处理

APP开发实战97-Android异常处理

作者: xjbclz | 来源:发表于2016-07-31 17:49 被阅读130次

    25 Android异常处理

    25.1异常处理基础

    (转自:http://blog.csdn.net/zkw12358/article/details/11097649#)

    Java中提供了UncaughtExceptionHandler这个接口,Android沿用了此接口,通过实现此接口,能够处理线程被一个无法捕捉的异常所终止的情况。

    ThreadGroup这个类就是实现了UncaughtExceptionHandler这个接口,如果想捕获异常,可以实现这个接口或者继承ThreadGroup,并重载uncaughtException方法。

    在实现UncaughtExceptionHandler时,必须重载uncaughtException(Threadthread, Throwable ex) ,如果没有实现该接口,也就是没有显示捕捉异常,则ex为空,否则ex不为空,thread 则为出异常的线程。

    如下代码实现UncaughtExceptionHandler接口,显示处理线程异常终止的情况:

    public class UnCeHandler implements UncaughtExceptionHandler {

    private Thread.UncaughtExceptionHandler mDefaultHandler;

    public static final String TAG = "CatchExcep";

    CatchExcep application;

    public UnCeHandler(CatchExcep application){

    //获取系统默认的UncaughtException处理器

    mDefaultHandler = Thread.getDefaultUncaughtExceptionHandler();

    this.application = application;

    }

    @Override

    public void uncaughtException(Thread thread, Throwable ex) {

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

    //如果用户没有处理则让系统默认的异常处理器来处理

    mDefaultHandler.uncaughtException(thread, ex);

    }else{

    try{

    Thread.sleep(2000);

    }catch (InterruptedException e){

    Log.e(TAG, "error : ", e);

    }

    Intent intent = new Intent(application.getApplicationContext(), MainActivity.class);

    PendingIntent restartIntent = PendingIntent.getActivity(

    application.getApplicationContext(), 0, intent,

    Intent.FLAG_ACTIVITY_NEW_TASK);

    //退出程序

    AlarmManager mgr = (AlarmManager)application.getSystemService(Context.ALARM_SERVICE);

    mgr.set(AlarmManager.RTC, System.currentTimeMillis() + 1000,

    restartIntent); // 1秒钟后重启应用

    application.finishActivity();

    }

    }

    /**

    * 自定义错误处理,收集错误信息 发送错误报告等操作均在此完成.

    *

    * @param ex

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

    */

    private boolean handleException(Throwable ex) {

    if (ex == null) {

    return false;

    }

    //使用Toast来显示异常信息

    new Thread(){

    @Override

    public void run() {

    Looper.prepare();

    Toast.makeText(application.getApplicationContext(), "很抱歉,程序出现异常,即将退出.",

    Toast.LENGTH_SHORT).show();

    Looper.loop();

    }

    }.start();

    return true;

    }

    }

    通过在androidApplication 这个全局类中处理异常:

    public class CatchExcep extends Application{

    ArrayList list = new ArrayList();

    public void init(){

    //设置该CrashHandler为程序的默认处理器

    UnCeHandler catchExcep = new UnCeHandler(this);

    Thread.setDefaultUncaughtExceptionHandler(catchExcep);

    }

    /**

    * Activity关闭时,删除Activity列表中的Activity对象*/

    public void removeActivity(Activity a){

    list.remove(a);

    }

    /**

    * 向Activity列表中添加Activity对象*/

    public void addActivity(Activity a){

    list.add(a);

    }

    /**

    * 关闭Activity列表中的所有Activity*/

    public void finishActivity(){

    for (Activity activity : list) {

    if (null != activity) {

    activity.finish();

    }

    }

    //杀死该应用进程

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

    }

    }

    测试代码:

    Button btn;

    TextView tv;

    private CatchExcep application;

    @Override

    protected void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);

    setContentView(R.layout.activity_main);

    btn = (Button)findViewById(R.id.btn);

    tv = (TextView)findViewById(R.id.tv);

    application = (CatchExcep)getApplication();

    application.init();

    application.addActivity(this);

    btn.setOnClickListener(this);

    }

    /**

    * 人为制造的异常*/

    public void press(){

    new Thread(new Runnable() {

    @Override

    public void run() {

    tv.setText("dfsd");

    }

    }).start();

    }

    @Override

    public void onClick(View v) {

    press();

    }

    }

    相关文章

      网友评论

        本文标题:APP开发实战97-Android异常处理

        本文链接:https://www.haomeiwen.com/subject/oaxxsttx.html