gpt4 book ai didi

android - SharedPreferences 在 Android 中不返回上次打开/关闭时间

转载 作者:行者123 更新时间:2023-11-29 20:31:17 27 4
gpt4 key购买 nike

我正在尝试检查该应用程序是否在过去一小时内打开过。我正在使用 SharedPreferences 类来执行此操作。然而,虽然我只在几分钟内运行了该应用程序,但当我查看我的当前时间和上次运行时间时,时差大约有 5 个小时。

我正在 Android Studio 上执行此操作。我不确定关闭模拟器并再次运行应用程序以打开模拟器是否会影响这一点。

我试过在 Debug模式下运行,但它从来没有遇到少于一个小时的事情。

public class MainWindowActivity extends AppCompatActivity {
public boolean runLastHour = false;

SharedPreferences pref;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main_window);

pref = PreferenceManager.getDefaultSharedPreferences(this);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main_window, menu);
return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();

//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}

return super.onOptionsItemSelected(item);
}

@Override
protected void onResume() {
super.onResume();
long lastRun = pref.getLong("LAST_RUN", -1);
if (lastRun == -1){
//first run after install
} else {
long currentTime = System.currentTimeMillis();
if (currentTime - lastRun <= (1000 * 60 * 60)) {// less than 1 hour
runLastHour = true;
}
}
}

@Override
protected void onStop() {
super.onStop();
pref.edit().putLong("LAST_RUN", System.currentTimeMillis()).apply();
}
}

最佳答案

您首先调用父类(super class)的 onStop 方法,然后尝试在 SharedPreference 中提交您的值。相反,您应该首先提交值,然后调用父类(super class)的 onStop() 方法。

这样试试,

@Override
protected void onStop() {
pref.edit().putLong("LAST_RUN", System.currentTimeMillis()).apply();
super.onStop();
}

在调用父类(super class)的方法之前调用 commit() 或 apply() 方法。

关于android - SharedPreferences 在 Android 中不返回上次打开/关闭时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31911970/

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