gpt4 book ai didi

android - 如何跟踪应用程序是否在 Android 中首次启动?

转载 作者:行者123 更新时间:2023-11-29 14:50:07 24 4
gpt4 key购买 nike

我正在开发一个应用程序,在该应用程序启动时,我想执行一些操作。现在我考虑使用Shared Preferences,直到我陷入困境,我必须在 Oncreate 本身上初始化它,并且每次我启动应用程序时,共享首选项都会被覆盖。

因此,我正在考虑检查特定类型变量本身是否存在于 Shared Preferences 中,但我也被困在那里。现在有没有我忽略的更简单的方法?

最佳答案

第一次使用 SharePrefrences 代码:

SharedPreferences prefs = PreferenceManager
.getDefaultSharedPreferences(this);
if (!prefs.getBoolean("Time", false)) {

// run your one time code

SharedPreferences.Editor editor = prefs.edit();
editor.putBoolean("Time", true);
editor.commit();
}

此共享首选项仅在第一次启动应用程序时运行一次。这是为我工作。

关于android - 如何跟踪应用程序是否在 Android 中首次启动?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21178264/

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