I have the date and time stored in preferences as Long
:
// put
SharedPreferences settings =
PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
settings.edit().putLong("pref_datetime", System.currentTimeMillis()).commit();
// get
Date date2 = new Date(settings.getLong("pref_datetime", 0));
Once date is extracted, how could I check if it belongs to the current week (starting on Monday) or not?