Show last cleanup time

This commit is contained in:
M66B
2019-04-25 12:19:55 +02:00
parent 1ae23fb11f
commit 240a30b1a3
4 changed files with 28 additions and 0 deletions

View File

@@ -115,6 +115,7 @@ public class FragmentOptions extends FragmentBase implements SharedPreferences.O
private SwitchCompat swEnglish;
private SwitchCompat swUpdates;
private SwitchCompat swDebug;
private TextView tvLastCleanup;
private Group grpSearchLocal;
private Group grpNotification;
@@ -201,6 +202,7 @@ public class FragmentOptions extends FragmentBase implements SharedPreferences.O
swEnglish = view.findViewById(R.id.swEnglish);
swUpdates = view.findViewById(R.id.swUpdates);
swDebug = view.findViewById(R.id.swDebug);
tvLastCleanup = view.findViewById(R.id.tvLastCleanup);
grpSearchLocal = view.findViewById(R.id.grpSearchLocal);
grpNotification = view.findViewById(R.id.grpNotification);
@@ -596,6 +598,12 @@ public class FragmentOptions extends FragmentBase implements SharedPreferences.O
}
});
long last_cleanup = prefs.getLong("last_cleanup", -1);
java.text.DateFormat df = SimpleDateFormat.getDateTimeInstance();
tvLastCleanup.setText(
getString(R.string.title_advanced_last_cleanup,
last_cleanup < 0 ? "-" : df.format(last_cleanup)));
PreferenceManager.getDefaultSharedPreferences(getContext()).registerOnSharedPreferenceChangeListener(this);
return view;

View File

@@ -1,8 +1,10 @@
package eu.faircode.email;
import android.content.Context;
import android.content.SharedPreferences;
import android.net.Uri;
import android.os.Build;
import android.preference.PreferenceManager;
import androidx.annotation.NonNull;
import androidx.work.Constraints;
@@ -156,6 +158,10 @@ public class WorkerCleanup extends Worker {
Log.e(ex);
} finally {
Log.i("End cleanup");
if (!manual) {
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
prefs.edit().putLong("last_cleanup", new Date().getTime()).apply();
}
}
}