崩溃后不要关闭应用程序

发布于 2024-10-21 02:33:57 字数 69 浏览 2 评论 0原文

所以我想知道是否可以在崩溃后不关闭应用程序。 我正在对 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

尸血腥色 2024-10-28 02:33:57

取决于崩溃情况。我能想到的一切都可以捕获异常,记录它,然后继续。

Depends on the crash. Everything I can think of you can catch an exception, log it, and keep going.

许一世地老天荒 2024-10-28 02:33:57

应用程序(通常只是顶级 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.

时间海 2024-10-28 02:33:57

您可以使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文