|
|
@ -67,6 +67,7 @@ public class FragmentOptionsPrivacy extends FragmentBase implements SharedPrefer
|
|
|
|
private SwitchCompat swDisplayHidden;
|
|
|
|
private SwitchCompat swDisplayHidden;
|
|
|
|
private Spinner spEncryptMethod;
|
|
|
|
private Spinner spEncryptMethod;
|
|
|
|
private Spinner spOpenPgp;
|
|
|
|
private Spinner spOpenPgp;
|
|
|
|
|
|
|
|
private SwitchCompat swAutocrypt;
|
|
|
|
private SwitchCompat swAutocryptMutual;
|
|
|
|
private SwitchCompat swAutocryptMutual;
|
|
|
|
private SwitchCompat swSign;
|
|
|
|
private SwitchCompat swSign;
|
|
|
|
private SwitchCompat swEncrypt;
|
|
|
|
private SwitchCompat swEncrypt;
|
|
|
@ -84,7 +85,8 @@ public class FragmentOptionsPrivacy extends FragmentBase implements SharedPrefer
|
|
|
|
|
|
|
|
|
|
|
|
private final static String[] RESET_OPTIONS = new String[]{
|
|
|
|
private final static String[] RESET_OPTIONS = new String[]{
|
|
|
|
"disable_tracking", "display_hidden",
|
|
|
|
"disable_tracking", "display_hidden",
|
|
|
|
"default_encrypt_method", "openpgp_provider", "autocrypt_mutual", "sign_default", "encrypt_default", "auto_decrypt",
|
|
|
|
"default_encrypt_method", "openpgp_provider", "autocrypt", "autocrypt_mutual",
|
|
|
|
|
|
|
|
"sign_default", "encrypt_default", "auto_decrypt",
|
|
|
|
"secure",
|
|
|
|
"secure",
|
|
|
|
"biometrics", "pin", "biometrics_timeout"
|
|
|
|
"biometrics", "pin", "biometrics_timeout"
|
|
|
|
};
|
|
|
|
};
|
|
|
@ -104,6 +106,7 @@ public class FragmentOptionsPrivacy extends FragmentBase implements SharedPrefer
|
|
|
|
swDisplayHidden = view.findViewById(R.id.swDisplayHidden);
|
|
|
|
swDisplayHidden = view.findViewById(R.id.swDisplayHidden);
|
|
|
|
spEncryptMethod = view.findViewById(R.id.spEncryptMethod);
|
|
|
|
spEncryptMethod = view.findViewById(R.id.spEncryptMethod);
|
|
|
|
spOpenPgp = view.findViewById(R.id.spOpenPgp);
|
|
|
|
spOpenPgp = view.findViewById(R.id.spOpenPgp);
|
|
|
|
|
|
|
|
swAutocrypt = view.findViewById(R.id.swAutocrypt);
|
|
|
|
swAutocryptMutual = view.findViewById(R.id.swAutocryptMutual);
|
|
|
|
swAutocryptMutual = view.findViewById(R.id.swAutocryptMutual);
|
|
|
|
swSign = view.findViewById(R.id.swSign);
|
|
|
|
swSign = view.findViewById(R.id.swSign);
|
|
|
|
swEncrypt = view.findViewById(R.id.swEncrypt);
|
|
|
|
swEncrypt = view.findViewById(R.id.swEncrypt);
|
|
|
@ -175,6 +178,14 @@ public class FragmentOptionsPrivacy extends FragmentBase implements SharedPrefer
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
swAutocrypt.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
|
|
|
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
|
|
|
|
|
|
|
|
prefs.edit().putBoolean("autocrypt", checked).apply();
|
|
|
|
|
|
|
|
swAutocryptMutual.setEnabled(checked);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
swAutocryptMutual.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
|
|
|
swAutocryptMutual.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
|
|
|
@Override
|
|
|
|
@Override
|
|
|
|
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
|
|
|
|
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
|
|
|
@ -356,7 +367,9 @@ public class FragmentOptionsPrivacy extends FragmentBase implements SharedPrefer
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
swAutocrypt.setChecked(prefs.getBoolean("autocrypt", true));
|
|
|
|
swAutocryptMutual.setChecked(prefs.getBoolean("autocrypt_mutual", true));
|
|
|
|
swAutocryptMutual.setChecked(prefs.getBoolean("autocrypt_mutual", true));
|
|
|
|
|
|
|
|
swAutocryptMutual.setEnabled(swAutocrypt.isChecked());
|
|
|
|
swSign.setChecked(prefs.getBoolean("sign_default", false));
|
|
|
|
swSign.setChecked(prefs.getBoolean("sign_default", false));
|
|
|
|
swEncrypt.setChecked(prefs.getBoolean("encrypt_default", false));
|
|
|
|
swEncrypt.setChecked(prefs.getBoolean("encrypt_default", false));
|
|
|
|
swSign.setEnabled(!swEncrypt.isChecked());
|
|
|
|
swSign.setEnabled(!swEncrypt.isChecked());
|
|
|
|