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