服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Android - Android中捕获全局异常实现代码

Android中捕获全局异常实现代码

2021-03-19 14:10安卓之家 Android

这篇文章主要介绍了Android中捕获全局异常实现代码,本文给出了2种方法,以及对应实现代码,需要的朋友可以参考下

1、实现UncaughtExceptionHandler,在方法uncaughtException中处理没有捕获的异常。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
public class GlobalException implements UncaughtExceptionHandler
  private final static GlobalException myCrashHandler = new GlobalException();
 
  private GlobalException()
  {
  }
 
  public static synchronized GlobalException getInstance()
  {
    return myCrashHandler;
  }
 
  public void uncaughtException(Thread arg0, Throwable arg1)
  {
    Trace.Log("-------------caught Exception--");
  }
}

 

2、继承Application ,在其中调用Thread方法setDefaultUncaughtExceptionHandler,来捕获异常

代码:
 

?
1
2
3
4
5
6
7
8
9
10
public class MyApplication extends Application
{
  public void onCreate()
  {
    super.onCreate();
    GlobalException handler = GlobalException.getInstance();   
    Thread.setDefaultUncaughtExceptionHandler(handler);  
    
  }
}

延伸 · 阅读

精彩推荐