原文:http://blog.csdn.net/fxtxz2/article/details/7921131 08-29 15:46:14.930: E/AndroidRuntime(28804): android.view.WindowManager$BadTokenException: Unable to add window -- token android.app.LocalActivityManager$LocalActivityRecord@40603cc0 is not valid
事实上是使用SetWindowPos()来改变z-order,所谓z-order是屏幕一般是以x轴y轴来表示位置,而以z轴表示前後位置,这便是z-order bWndInsertAfter的设定值 HWND_BOTTOM Places the window at the bottom of the Z order. If the hwnd parameter identifies a topmost window, the window loses its topmost status and
今天看到迅雷动漫里面一个CrashHandler 的类,我猜是崩溃处理类.进去一看,果然.顺便学习一下. Android系统的"程序异常退出",给应用的用户体验造成不良影响.为了捕获应用运行时异常并给出友好提示,便可继承UncaughtExceptionHandler类来处理.通过Thread.setDefaultUncaughtExceptionHandler()方法将异常处理类设置到线程上即可. 代码: public class CrashHandler implements Un