android 如何从传入onCreate()或onRestoreInstanceState()的已保存示例状态包中“热启动”获益

tzdcorbm  于 2024-01-04  发布在  Android
关注(0)|答案(1)|浏览(151)

在阅读了这些Android文档之后,我们感到困惑的是,如何从传入onCreate()或onRestoreInstanceState()的已保存示例状态包中受益于“热启动问题”。在saving-states文档中,它说“已保存示例状态”仅保存原始类型和简单,String之类的小对象。这显然不能保存大量的启动时间。而活动生命周期文档中的示例代码,它保存了一个游戏的预先玩过的级别和分数,并建议这可以缩短开始时间。但是怎么做呢?他是否暗示我们可以只使用级别和分数来减少必要的对象加载?但是我们真的可以从保存的示例状态中受益吗?
我们无法从这些文档中找到实际的示例代码来明显减少热启动时间。
https://developer.android.com/topic/performance/vitals/launch-time#warm

  • 系统将应用从内存中逐出,然后用户重新启动应用。进程和Activity需要重新启动,但任务可以从传入onCreate()的已保存示例状态包中受益。*

https://developer.android.com/topic/libraries/architecture/saving-states

  • (保存的示例状态)仅适用于基本类型和简单的小对象,如String*

https://developer.android.com/guide/components/activities/activity-lifecycle#asem

  • 本文档有示例代码,可以像游戏一样恢复一些级别和分数的信息。*
  1. public void onRestoreInstanceState(Bundle savedInstanceState) {
  2. // Always call the superclass so it can restore the view hierarchy
  3. super.onRestoreInstanceState(savedInstanceState);
  4. // Restore state members from saved instance
  5. currentScore = savedInstanceState.getInt(STATE_SCORE);
  6. currentLevel = savedInstanceState.getInt(STATE_LEVEL);
  7. }

字符串

bqujaahr

bqujaahr1#

在WARM状态的情况下,即使进程死亡,onSaveInstanceState中的bundle也会被持久化。如果你检查文档,虽然它声明bundle被序列化/重新序列化到磁盘。如果数据复杂,这个过程可能会很慢,就像例子中的原语一样。
无论哪种方式,Activity#onCreate都会与已保存(或未保存)的bundle一起调用。使用与否取决于您的数据。

相关问题