Please tell me how to save a Date (Date ddd;) in SharedPreferences and then compare ddd with the current date? The standard form for writing the variable SharedPreferences looks like this, but how can I get a date there?
SharedPreferences sharedPref = getActivity().getPreferences(Context.MODE_PRIVATE); SharedPreferences.Editor editor = sharedPref.edit(); editor.putInt(getString(R.string.saved_high_score), newHighScore); editor.commit();