Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android中捕獲全局異常實現代碼

Android中捕獲全局異常實現代碼

編輯:關於Android編程

1、實現UncaughtExceptionHandler,在方法uncaughtException中處理沒有捕獲的異常。

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,來捕獲異常

代碼:

public class MyApplication extends Application 
{
  public void onCreate() 
  {
    super.onCreate();
    GlobalException handler = GlobalException.getInstance();    
    Thread.setDefaultUncaughtExceptionHandler(handler);   
    
  }
}

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved