崩溃后不要关闭应用程序
所以我想知道是否可以在崩溃后不关闭应用程序。 我正在对 Android 应用程序进行测试,我希望代码能够让我在崩溃时继续测试
So I would like to know if it is possible to not close the application after a crash.
I am doing testing on Android applications and I would like the code that would allow me to continue my test when there is a crash
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
取决于崩溃情况。我能想到的一切都可以捕获异常,记录它,然后继续。
Depends on the crash. Everything I can think of you can catch an exception, log it, and keep going.
应用程序(通常只是顶级 Activity)在崩溃后无法继续。
您能做的最好的事情就是使用标准的 Java try/catch 块。
The app (usually just the top Activity) can't continue after a crash.
The best you can do is use the standard Java try/catch blocks.
您可以使用 Thread.setDefaultUncaughtExceptionHandler() 从崩溃中恢复。只需将默认处理程序替换为您的处理程序(使用该方法)并执行您想要的操作即可。
You can recover from a crash using
Thread.setDefaultUncaughtExceptionHandler()
. Just replace the default handler with yours (using that method) and do what you want.