mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-26 17:57:16 +00:00
Automatically copy account password to identity
This commit is contained in:
parent
a5af366b03
commit
94f0e866e1
1 changed files with 15 additions and 0 deletions
|
@ -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…
Reference in a new issue