Browse Source

Automatically copy account password to identity

main
M66B 5 years ago
parent
commit
94f0e866e1
1 changed files with 15 additions and 0 deletions
  1. +15
    -0
      app/src/main/java/eu/faircode/email/FragmentIdentity.java

+ 15
- 0
app/src/main/java/eu/faircode/email/FragmentIdentity.java View File

@ -130,6 +130,21 @@ public class FragmentIdentity extends FragmentEx {
}
});
spAccount.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
@Override
public void onItemSelected(AdapterView<?> adapterView, View view, int position, long id) {
EntityAccount account = (EntityAccount) adapterView.getAdapter().getItem(position);
if (account.id >= 0 && TextUtils.isEmpty(tilPassword.getEditText().getText().toString())) {
tilPassword.getEditText().setText(account.password);
tilPassword.setPasswordVisibilityToggleEnabled(false);
}
}
@Override
public void onNothingSelected(AdapterView<?> adapterView) {
}
});
spProfile.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
@Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {


Loading…
Cancel
Save