我正在尝试使用 SharedPreferences 让我的 Android 应用程序每天运行一次方法。这是我到目前为止所拥有的代码..
//for onEntry ad to run once daily
Calendar c = Calendar.getInstance();
int lastDayRan;
SharedPreferences prefs = this.getSharedPreferences(
"com.example.myapp", Context.MODE_PRIVATE);
if(prefs.getInt("lastDayRan", lastDayRan) != today){//what to do now?
}