mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-06 09:03:56 +02:00
Show last cleanup time
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user