mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-02 23:26:12 +02:00
Added option for default answer action
This commit is contained in:
@@ -79,6 +79,7 @@ public class FragmentOptionsSend extends FragmentBase implements SharedPreferenc
|
||||
private SwitchCompat swDiscardDelete;
|
||||
private Spinner spSendDelayed;
|
||||
private Spinner spAnswerAction;
|
||||
private SwitchCompat swAnswerDefault;
|
||||
private Button btnSound;
|
||||
|
||||
private ViewButtonColor btnComposeColor;
|
||||
@@ -121,7 +122,7 @@ public class FragmentOptionsSend extends FragmentBase implements SharedPreferenc
|
||||
"send_reminders", "send_chips", "send_pending",
|
||||
"auto_save_paragraph", "auto_save_dot", "discard_delete",
|
||||
"send_delayed",
|
||||
"answer_action",
|
||||
"answer_action", "answer_default",
|
||||
"sound_sent",
|
||||
"compose_color", "compose_font",
|
||||
"prefix_once", "prefix_count", "alt_re", "alt_fwd",
|
||||
@@ -161,6 +162,7 @@ public class FragmentOptionsSend extends FragmentBase implements SharedPreferenc
|
||||
swDiscardDelete = view.findViewById(R.id.swDiscardDelete);
|
||||
spSendDelayed = view.findViewById(R.id.spSendDelayed);
|
||||
spAnswerAction = view.findViewById(R.id.spAnswerAction);
|
||||
swAnswerDefault = view.findViewById(R.id.swAnswerDefault);
|
||||
btnSound = view.findViewById(R.id.btnSound);
|
||||
|
||||
btnComposeColor = view.findViewById(R.id.btnComposeColor);
|
||||
@@ -356,6 +358,13 @@ public class FragmentOptionsSend extends FragmentBase implements SharedPreferenc
|
||||
}
|
||||
});
|
||||
|
||||
swAnswerDefault.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
||||
@Override
|
||||
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
|
||||
prefs.edit().putBoolean("answer_default", checked).apply();
|
||||
}
|
||||
});
|
||||
|
||||
btnSound.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
@@ -735,6 +744,8 @@ public class FragmentOptionsSend extends FragmentBase implements SharedPreferenc
|
||||
break;
|
||||
}
|
||||
|
||||
swAnswerDefault.setChecked(prefs.getBoolean("answer_default", false));
|
||||
|
||||
btnComposeColor.setColor(prefs.getInt("compose_color", Color.TRANSPARENT));
|
||||
|
||||
String compose_font = prefs.getString("compose_font", "");
|
||||
|
||||
Reference in New Issue
Block a user