I'm need to save playing time to prefferensses when app is close but if i click on Task Manager and close app or switch to other and close it some time ago my app doesent save anything.
code of onStop
@Override
protected void onStop() {
super.onStop();
Log.d("", "MainActivity: onStop()");
SearchFragment.sPref = MainActivity.this.getPreferences(Context.MODE_PRIVATE);
SharedPreferences.Editor ed = SearchFragment.sPref.edit();
ed.putLong("SAVED_TIME", SearchFragment.mediaPlayer.getCurrentPosition());
ed.commit();
}