如何保存捆绑包?

发布于 2024-11-05 03:25:39 字数 90 浏览 9 评论 0原文

哪一个更好地保存 Bundle:OnSaveInstanceState 或 OnPause 以便在旋转和重绘包含已修改图像的 GridView 时保存 Bundle?

Which one is better to save Bundle: OnSaveInstanceState or OnPause in order to save Bundle in case or rotation and redrawing of a GridView containing images that have been modified?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

纸伞微斜 2024-11-12 03:25:39

每当您的 Activity 失去前台状态时,就会调用 onPause() ,随后当它进入前台时,就会调用其对应的 onResume() 。因此,您可以在此处检查与 UI 相关的信息(例如更新)。

onSaveInstanceState() 是您应该保存 Bundle 的位置。可以在 onCreate()onRestoreInstanceState() 中检索您的包(活动状态信息)。

onPause() is called whenever your activity loses it's foreground status, and subsequently when it comes to the foreground, it's counterpart onResume() is called. So, this is where you would check your UI-related information (eg. updating).

onSaveInstanceState() is where you should save your Bundle. The retrieval of your bundle (activity state info) can be done in either onCreate() or onRestoreInstanceState().

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