我试图检查应用程序是否在过去一小时内打开。我使用SharedPreferences
类来执行此操作。但是,虽然我只在几分钟内运行应用程序,但是当我检查当前时间和上次运行时间时,时间差异就像是5个小时。
我在Android Studio
上这样做了。我不确定是否关闭模拟器并再次运行应用程序来打开模拟器会影响到这一点。
我尝试在调试模式下运行,但它从未达到过不到一小时的时间。
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();
}
}
答案 0 :(得分:2)
您首先调用超类的onStop方法,然后尝试在SharedPreference中提交您的值。相反,你应该首先提交价值&amp;然后调用超类的onStop()方法。
试试这种方式,
@Override
protected void onStop() {
pref.edit().putLong("LAST_RUN", System.currentTimeMillis()).apply();
super.onStop();
}
在调用超类的方法之前调用commit()或apply()方法。