|
|
@ -79,7 +79,6 @@ public class FragmentOptionsSend extends FragmentBase implements SharedPreferenc
|
|
|
|
private SwitchCompat swDiscardDelete;
|
|
|
|
private SwitchCompat swDiscardDelete;
|
|
|
|
private Spinner spSendDelayed;
|
|
|
|
private Spinner spSendDelayed;
|
|
|
|
private Spinner spAnswerAction;
|
|
|
|
private Spinner spAnswerAction;
|
|
|
|
private SwitchCompat swAnswerDefault;
|
|
|
|
|
|
|
|
private Button btnSound;
|
|
|
|
private Button btnSound;
|
|
|
|
|
|
|
|
|
|
|
|
private ViewButtonColor btnComposeColor;
|
|
|
|
private ViewButtonColor btnComposeColor;
|
|
|
@ -122,7 +121,7 @@ public class FragmentOptionsSend extends FragmentBase implements SharedPreferenc
|
|
|
|
"send_reminders", "send_chips", "send_pending",
|
|
|
|
"send_reminders", "send_chips", "send_pending",
|
|
|
|
"auto_save_paragraph", "auto_save_dot", "discard_delete",
|
|
|
|
"auto_save_paragraph", "auto_save_dot", "discard_delete",
|
|
|
|
"send_delayed",
|
|
|
|
"send_delayed",
|
|
|
|
"answer_action", "answer_default",
|
|
|
|
"answer_action",
|
|
|
|
"sound_sent",
|
|
|
|
"sound_sent",
|
|
|
|
"compose_color", "compose_font",
|
|
|
|
"compose_color", "compose_font",
|
|
|
|
"prefix_once", "prefix_count", "alt_re", "alt_fwd",
|
|
|
|
"prefix_once", "prefix_count", "alt_re", "alt_fwd",
|
|
|
@ -162,7 +161,6 @@ public class FragmentOptionsSend extends FragmentBase implements SharedPreferenc
|
|
|
|
swDiscardDelete = view.findViewById(R.id.swDiscardDelete);
|
|
|
|
swDiscardDelete = view.findViewById(R.id.swDiscardDelete);
|
|
|
|
spSendDelayed = view.findViewById(R.id.spSendDelayed);
|
|
|
|
spSendDelayed = view.findViewById(R.id.spSendDelayed);
|
|
|
|
spAnswerAction = view.findViewById(R.id.spAnswerAction);
|
|
|
|
spAnswerAction = view.findViewById(R.id.spAnswerAction);
|
|
|
|
swAnswerDefault = view.findViewById(R.id.swAnswerDefault);
|
|
|
|
|
|
|
|
btnSound = view.findViewById(R.id.btnSound);
|
|
|
|
btnSound = view.findViewById(R.id.btnSound);
|
|
|
|
|
|
|
|
|
|
|
|
btnComposeColor = view.findViewById(R.id.btnComposeColor);
|
|
|
|
btnComposeColor = view.findViewById(R.id.btnComposeColor);
|
|
|
@ -358,13 +356,6 @@ 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() {
|
|
|
|
btnSound.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
public void onClick(View v) {
|
|
|
@ -744,8 +735,6 @@ public class FragmentOptionsSend extends FragmentBase implements SharedPreferenc
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
swAnswerDefault.setChecked(prefs.getBoolean("answer_default", false));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
btnComposeColor.setColor(prefs.getInt("compose_color", Color.TRANSPARENT));
|
|
|
|
btnComposeColor.setColor(prefs.getInt("compose_color", Color.TRANSPARENT));
|
|
|
|
|
|
|
|
|
|
|
|
String compose_font = prefs.getString("compose_font", "");
|
|
|
|
String compose_font = prefs.getString("compose_font", "");
|
|
|
|