导致出现Force Close的原因有很多,
常见的有比如空指针啦,类没有找到啦,资源没找到,
就连Android API使用的顺序错误也可能导致(比如setContentView()之前进行了findViewById()操作)
如何避免弹出Force Close窗口 可以实现Thread.UncaughtExceptionHandler接口的uncaughtException方法
导致出现Force Close的原因有很多,
常见的有比如空指针啦,类没有找到啦,资源没找到,
就连Android API使用的顺序错误也可能导致(比如setContentView()之前进行了findViewById()操作)
如何避免弹出Force Close窗口 可以实现Thread.UncaughtExceptionHandler接口的uncaughtException方法