mirror of https://github.com/M66B/FairEmail.git
Refactoring
This commit is contained in:
parent
bd8cff9ccd
commit
d2283c5e58
|
@ -121,7 +121,6 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc
|
||||||
private TextView tvExperimentsHint;
|
private TextView tvExperimentsHint;
|
||||||
private SwitchCompat swCrashReports;
|
private SwitchCompat swCrashReports;
|
||||||
private TextView tvUuid;
|
private TextView tvUuid;
|
||||||
private SwitchCompat swCanary;
|
|
||||||
private Button btnReset;
|
private Button btnReset;
|
||||||
private SwitchCompat swCleanupAttachments;
|
private SwitchCompat swCleanupAttachments;
|
||||||
private Button btnCleanup;
|
private Button btnCleanup;
|
||||||
|
@ -129,6 +128,7 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc
|
||||||
private SwitchCompat swProtocol;
|
private SwitchCompat swProtocol;
|
||||||
private SwitchCompat swLogInfo;
|
private SwitchCompat swLogInfo;
|
||||||
private SwitchCompat swDebug;
|
private SwitchCompat swDebug;
|
||||||
|
private SwitchCompat swCanary;
|
||||||
private SwitchCompat swTest1;
|
private SwitchCompat swTest1;
|
||||||
private SwitchCompat swTest2;
|
private SwitchCompat swTest2;
|
||||||
private SwitchCompat swTest3;
|
private SwitchCompat swTest3;
|
||||||
|
@ -204,8 +204,8 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc
|
||||||
"classification", "class_min_probability", "class_min_difference",
|
"classification", "class_min_probability", "class_min_difference",
|
||||||
"language", "deepl_enabled", "watchdog",
|
"language", "deepl_enabled", "watchdog",
|
||||||
"updates", "weekly", "show_changelog",
|
"updates", "weekly", "show_changelog",
|
||||||
"experiments", "crash_reports", "leak_canary", "cleanup_attachments",
|
"experiments", "crash_reports", "cleanup_attachments",
|
||||||
"protocol", "debug", "log_level", "test1", "test2", "test3", "test4", "test5",
|
"protocol", "log_level", "debug", "leak_canary", "test1", "test2", "test3", "test4", "test5",
|
||||||
"work_manager", // "external_storage",
|
"work_manager", // "external_storage",
|
||||||
"query_threads", "wal", "sqlite_checkpoints", "sqlite_analyze", "sqlite_cache",
|
"query_threads", "wal", "sqlite_checkpoints", "sqlite_analyze", "sqlite_cache",
|
||||||
"chunk_size", "thread_range", "undo_manager", "webview_legacy", "browser_zoom",
|
"chunk_size", "thread_range", "undo_manager", "webview_legacy", "browser_zoom",
|
||||||
|
@ -288,7 +288,6 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc
|
||||||
tvExperimentsHint = view.findViewById(R.id.tvExperimentsHint);
|
tvExperimentsHint = view.findViewById(R.id.tvExperimentsHint);
|
||||||
swCrashReports = view.findViewById(R.id.swCrashReports);
|
swCrashReports = view.findViewById(R.id.swCrashReports);
|
||||||
tvUuid = view.findViewById(R.id.tvUuid);
|
tvUuid = view.findViewById(R.id.tvUuid);
|
||||||
swCanary = view.findViewById(R.id.swCanary);
|
|
||||||
btnReset = view.findViewById(R.id.btnReset);
|
btnReset = view.findViewById(R.id.btnReset);
|
||||||
swCleanupAttachments = view.findViewById(R.id.swCleanupAttachments);
|
swCleanupAttachments = view.findViewById(R.id.swCleanupAttachments);
|
||||||
btnCleanup = view.findViewById(R.id.btnCleanup);
|
btnCleanup = view.findViewById(R.id.btnCleanup);
|
||||||
|
@ -296,6 +295,7 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc
|
||||||
swProtocol = view.findViewById(R.id.swProtocol);
|
swProtocol = view.findViewById(R.id.swProtocol);
|
||||||
swLogInfo = view.findViewById(R.id.swLogInfo);
|
swLogInfo = view.findViewById(R.id.swLogInfo);
|
||||||
swDebug = view.findViewById(R.id.swDebug);
|
swDebug = view.findViewById(R.id.swDebug);
|
||||||
|
swCanary = view.findViewById(R.id.swCanary);
|
||||||
swTest1 = view.findViewById(R.id.swTest1);
|
swTest1 = view.findViewById(R.id.swTest1);
|
||||||
swTest2 = view.findViewById(R.id.swTest2);
|
swTest2 = view.findViewById(R.id.swTest2);
|
||||||
swTest3 = view.findViewById(R.id.swTest3);
|
swTest3 = view.findViewById(R.id.swTest3);
|
||||||
|
@ -667,15 +667,6 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
swCanary.setVisibility(BuildConfig.DEBUG ? View.VISIBLE : View.GONE);
|
|
||||||
swCanary.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
|
||||||
@Override
|
|
||||||
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
|
|
||||||
prefs.edit().putBoolean("leak_canary", checked).apply();
|
|
||||||
CoalMine.setup(checked);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
btnReset.setOnClickListener(new View.OnClickListener() {
|
btnReset.setOnClickListener(new View.OnClickListener() {
|
||||||
@Override
|
@Override
|
||||||
public void onClick(View v) {
|
public void onClick(View v) {
|
||||||
|
@ -734,6 +725,15 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
swCanary.setVisibility(BuildConfig.DEBUG ? View.VISIBLE : View.GONE);
|
||||||
|
swCanary.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
||||||
|
@Override
|
||||||
|
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
|
||||||
|
prefs.edit().putBoolean("leak_canary", checked).apply();
|
||||||
|
CoalMine.setup(checked);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
swTest1.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
swTest1.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
||||||
@Override
|
@Override
|
||||||
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
|
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
|
||||||
|
@ -1685,12 +1685,12 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc
|
||||||
swExperiments.setChecked(prefs.getBoolean("experiments", false));
|
swExperiments.setChecked(prefs.getBoolean("experiments", false));
|
||||||
swCrashReports.setChecked(prefs.getBoolean("crash_reports", false));
|
swCrashReports.setChecked(prefs.getBoolean("crash_reports", false));
|
||||||
tvUuid.setText(prefs.getString("uuid", null));
|
tvUuid.setText(prefs.getString("uuid", null));
|
||||||
swCanary.setChecked(prefs.getBoolean("leak_canary", false));
|
|
||||||
swCleanupAttachments.setChecked(prefs.getBoolean("cleanup_attachments", false));
|
swCleanupAttachments.setChecked(prefs.getBoolean("cleanup_attachments", false));
|
||||||
|
|
||||||
swProtocol.setChecked(prefs.getBoolean("protocol", false));
|
swProtocol.setChecked(prefs.getBoolean("protocol", false));
|
||||||
swLogInfo.setChecked(prefs.getInt("log_level", Log.getDefaultLogLevel()) <= android.util.Log.INFO);
|
swLogInfo.setChecked(prefs.getInt("log_level", Log.getDefaultLogLevel()) <= android.util.Log.INFO);
|
||||||
swDebug.setChecked(prefs.getBoolean("debug", false));
|
swDebug.setChecked(prefs.getBoolean("debug", false));
|
||||||
|
swCanary.setChecked(prefs.getBoolean("leak_canary", false));
|
||||||
swTest1.setChecked(prefs.getBoolean("test1", false));
|
swTest1.setChecked(prefs.getBoolean("test1", false));
|
||||||
swTest2.setChecked(prefs.getBoolean("test2", false));
|
swTest2.setChecked(prefs.getBoolean("test2", false));
|
||||||
swTest3.setChecked(prefs.getBoolean("test3", false));
|
swTest3.setChecked(prefs.getBoolean("test3", false));
|
||||||
|
|
|
@ -453,19 +453,6 @@
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@id/swCrashReports" />
|
app:layout_constraintTop_toBottomOf="@id/swCrashReports" />
|
||||||
|
|
||||||
<androidx.appcompat.widget.SwitchCompat
|
|
||||||
android:id="@+id/swCanary"
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_marginTop="12dp"
|
|
||||||
android:drawableStart="@drawable/leakcanary"
|
|
||||||
android:drawablePadding="6dp"
|
|
||||||
android:text="@string/title_advanced_canary"
|
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
|
||||||
app:layout_constraintTop_toBottomOf="@id/tvUuid"
|
|
||||||
app:switchPadding="12dp" />
|
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
android:id="@+id/btnReset"
|
android:id="@+id/btnReset"
|
||||||
style="?android:attr/buttonStyleSmall"
|
style="?android:attr/buttonStyleSmall"
|
||||||
|
@ -476,7 +463,7 @@
|
||||||
android:drawablePadding="6dp"
|
android:drawablePadding="6dp"
|
||||||
android:text="@string/title_setup_reset_questions"
|
android:text="@string/title_setup_reset_questions"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@id/swCanary" />
|
app:layout_constraintTop_toBottomOf="@id/tvUuid" />
|
||||||
|
|
||||||
<androidx.appcompat.widget.SwitchCompat
|
<androidx.appcompat.widget.SwitchCompat
|
||||||
android:id="@+id/swCleanupAttachments"
|
android:id="@+id/swCleanupAttachments"
|
||||||
|
@ -638,6 +625,19 @@
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@id/swDebug" />
|
app:layout_constraintTop_toBottomOf="@id/swDebug" />
|
||||||
|
|
||||||
|
<androidx.appcompat.widget.SwitchCompat
|
||||||
|
android:id="@+id/swCanary"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="12dp"
|
||||||
|
android:drawableStart="@drawable/leakcanary"
|
||||||
|
android:drawablePadding="6dp"
|
||||||
|
android:text="@string/title_advanced_canary"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@id/tvDebugHint"
|
||||||
|
app:switchPadding="12dp" />
|
||||||
|
|
||||||
<androidx.appcompat.widget.SwitchCompat
|
<androidx.appcompat.widget.SwitchCompat
|
||||||
android:id="@+id/swTest1"
|
android:id="@+id/swTest1"
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
|
@ -647,7 +647,7 @@
|
||||||
android:text="@string/title_advanced_test1"
|
android:text="@string/title_advanced_test1"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@id/tvDebugHint"
|
app:layout_constraintTop_toBottomOf="@id/swCanary"
|
||||||
app:switchPadding="12dp" />
|
app:switchPadding="12dp" />
|
||||||
|
|
||||||
<androidx.appcompat.widget.SwitchCompat
|
<androidx.appcompat.widget.SwitchCompat
|
||||||
|
|
Loading…
Reference in New Issue