關於Android Force Close 出現的緣由 以及解決方法

關於Android Force Close 出現的緣由 以及解決方法 致使出現Force Close的緣由有不少,常見的有好比空指針啦,類沒有找到啦,資源沒找到,就連Android API使用的順序錯誤也可能致使(好比setContentView()以前進行了findViewById()操做) Force Close有的人說能夠用來讓應用徹底退出 而故意致使這個問題,讓程序強制關閉,這種作法我仍是不經常使用。 如何避免彈出Force Close窗口 能夠實現Thread.UncaughtExceptionHandler接口的uncaughtException方法 代碼以下: import java.lang.Thread.UncaughtExceptionHandler; import android.app.Application; public class MyApplication extends Application implements UncaughtExceptionHandler { @Override public void onCreate() {   // TODO Auto-generated method stub   super.onCreate(); } @Override public void uncaughtException(Thread thread, Throwable ex) {   thread.setDefaultUncaughtExceptionHandler( this);   } } 再補充一句,想要哪一個線程能夠處理未捕獲異常,thread.setDefaultUncaughtExceptionHandler( this); 這句代碼都要在那個線程中執行一次
相關文章
相關標籤/搜索