mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-11 11:33:09 +02:00
Added main enable/disable in advanced settings
This commit is contained in:
@@ -32,6 +32,7 @@ import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
|
||||
public class FragmentOptions extends FragmentEx {
|
||||
private CheckBox cbEnabled;
|
||||
private CheckBox cbAvatars;
|
||||
private CheckBox cbLight;
|
||||
private CheckBox cbBrowse;
|
||||
@@ -45,6 +46,7 @@ public class FragmentOptions extends FragmentEx {
|
||||
View view = inflater.inflate(R.layout.fragment_options, container, false);
|
||||
|
||||
// Get controls
|
||||
cbEnabled = view.findViewById(R.id.cbEnabled);
|
||||
cbAvatars = view.findViewById(R.id.cbAvatars);
|
||||
cbLight = view.findViewById(R.id.cbLight);
|
||||
cbBrowse = view.findViewById(R.id.cbBrowse);
|
||||
@@ -54,6 +56,15 @@ public class FragmentOptions extends FragmentEx {
|
||||
|
||||
final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getContext());
|
||||
|
||||
cbEnabled.setChecked(prefs.getBoolean("enabled", true));
|
||||
cbEnabled.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
||||
@Override
|
||||
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
|
||||
prefs.edit().putBoolean("enabled", checked).apply();
|
||||
ServiceSynchronize.reload(getContext(), "enabled");
|
||||
}
|
||||
});
|
||||
|
||||
cbAvatars.setChecked(prefs.getBoolean("avatars", true));
|
||||
cbAvatars.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
||||
@Override
|
||||
|
||||
@@ -984,7 +984,7 @@ public class ServiceSynchronize extends LifecycleService {
|
||||
public void onReceive(Context context, Intent intent) {
|
||||
// Receiver runs on main thread
|
||||
// Receiver has a wake lock for ~10 seconds
|
||||
EntityLog.log(context, account.name + " keep alive");
|
||||
EntityLog.log(context, account.name + " keep alive wake lock=" + wl.isHeld());
|
||||
state.thread.interrupt();
|
||||
yieldWakelock();
|
||||
}
|
||||
@@ -1939,6 +1939,13 @@ public class ServiceSynchronize extends LifecycleService {
|
||||
private void start() {
|
||||
EntityLog.log(ServiceSynchronize.this, "Main start");
|
||||
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(ServiceSynchronize.this);
|
||||
if (!prefs.getBoolean("enabled", true)) {
|
||||
EntityLog.log(ServiceSynchronize.this, "Not enabled, halt");
|
||||
stopSelf();
|
||||
return;
|
||||
}
|
||||
|
||||
state = new ServiceState();
|
||||
state.thread = new Thread(new Runnable() {
|
||||
private List<ServiceState> threadState = new ArrayList<>();
|
||||
|
||||
Reference in New Issue
Block a user