gpt4 book ai didi

java - 如何在 Android 应用程序关闭或失去焦点时调用方法?

转载 作者:太空宇宙 更新时间:2023-11-03 11:50:20 25 4
gpt4 key购买 nike

因为我正在构建的应用程序将处理相当敏感的数据,所以我想在每次用户登录时将 SQLite 数据库与服务器同步,并在每次应用程序失去焦点时删除数据库(因为用户移动到主屏幕或其他应用程序)。

看到the Activity lifecycle ,我的想法是通过在每个 Activity 的 onDestroy 中清空数据库来做到这一点。为了测试所描述的生命周期,我只是覆盖所有生命周期方法(onCreate、onStart、onResume、onPause、onStop 和 onDestroy),在其中包含一些日志消息,然后启动我的应用程序。

日志消息包含在我的 SettingsActivity 中。当我进入我的应用程序并移至设置时,它会运行 onCreate、onStart 和 onResume(如预期的那样)。然后,当我单击一个设置并移至下一个屏幕时,它会运行 onPause 和 onStop(仍然符合预期)。要返回设置屏幕,我单击后退按钮,它再次运行 onStart 和 onResume(仍然如预期),当我现在再次单击后退按钮返回初始屏幕时,它(令我惊讶的是)运行 onPause, onStop 和 onDestroy。

所以我的问题;

  1. 为什么在应用程序未完成时销毁 Activity?
  2. 更重要的是:当应用关闭或失去焦点时,如何运行我的 CleanUp 方法?

最佳答案

您可以在这里获得更多信息:http://developer.android.com/training/basics/activity-lifecycle/stopping.html

即使我认为您已经阅读过它,因为您已经研究过 Activity 生命周期,但您可以在第一张图中看到 onDestroy()onStop() 之后调用并且这个调用完全由系统管理:你不应该期待任何行为。系统将自行决定何时调用此方法,有时,此方法永远不会被调用(参见此处:http://developer.android.com/reference/android/app/Activity.html)。当系统需要内存时,您的 Activity 将传入 onStop()仅此而已。

所以,为了回答你的第二个问题,你应该阅读文档中关于 onDestroy() 的说明。方法:

Note: do not count on this method being called as a place for saving data! For example, if an activity is editing data in a content provider, those edits should be committed in either onPause() or onSaveInstanceState(Bundle), not here. This method is usually implemented to free resources like threads that are associated with an activity, so that a destroyed activity does not leave such things around while the rest of its application is still running. There are situations where the system will simply kill the activity's hosting process without calling this method (or any others) in it, so it should not be used to do things that are intended to remain around after the process goes away.

所以很明显,这里不是进行清理过程的好地方。所以你应该使用 onPause() 之一或 onStop()方法。

onStop()在文档中是这样描述的:

Called when you are no longer visible to the user. You will next receive either onRestart(), onDestroy(), or nothing, depending on later user activity.

onPause()在文档中是这样描述的:

Called as part of the activity lifecycle when an activity is going into the background, but has not (yet) been killed. [...] When activity B is launched in front of activity A, this callback will be invoked on A. B will not be created until A's onPause() returns, so be sure to not do anything lengthy here. [...] In situations where the system needs more memory it may kill paused processes to reclaim resources.

我们现在知道 onPause()旨在让您保存数据,以及 onPause() 之后的数据已执行,系统可能终止您的进程。因此,在 onPause() 中进行清理似乎是最安全的地方,因为您很确定每次都会调用它。

此外,如您所见,在此处进行清理会使您的应用变慢,但无论如何在每次获得/失去焦点时清理和重新创建数据库是一个非常繁重的过程...

要恢复:在 onPause() 中进行清理过程onResume() 中的方法和您的初始化进程. 请记住,使用这种过程您的应用程序可能会非常慢。

希望对您有所帮助。

关于java - 如何在 Android 应用程序关闭或失去焦点时调用方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19560171/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com