摘要: public class UEHandler implements Thread.UncaughtExceptionHandler { private MyApp softApp; private Context context; public UEHandler(MyApp app,Context context) { softApp = app; this.context = context; } public void uncaughtException(Thread thread, Throwable ex) { ... 阅读全文