gpt4 book ai didi

android - SharedPreference 未按预期工作

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:46:26 24 4
gpt4 key购买 nike

我有一个 Activity ,我只想在应用程序第一次运行时运行。我检查了返回 bool 值的指定共享首选项。如果它返回 true 它将被启动,它将被设置为 false,这样下次打开应用程序时它就不会运行。但是我的实现出错了。每次我打开 BeforMain1 Activity 时都会打开。有人可以告诉我我的代码有什么问题吗?

sharedPreferences = getSharedPreferences("ShaPreferences", Context.MODE_PRIVATE);
SharedPreferences.Editor editor=sharedPreferences.edit();
boolean firstTime=sharedPreferences.getBoolean("first", true);
if(firstTime) {
editor.putBoolean("first",false);
Intent intent = new Intent(SplashScreen.this, BeforeMain1.class);
startActivity(intent);
}
else
{
Intent intent = new Intent(SplashScreen.this, MainActivity.class);
startActivity(intent);
}

最佳答案

您忘记提交 SharedPreferences 更改,

if(firstTime) {
editor.putBoolean("first",false);
//For commit the changes, Use either editor.commit(); or editor.apply();.
editor.commit(); or editor.apply();
Intent intent = new Intent(SplashScreen.this, BeforeMain1.class);
startActivity(intent);
}else {
Intent intent = new Intent(SplashScreen.this, MainActivity.class);
startActivity(intent);
}

关于android - SharedPreference 未按预期工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33455355/

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