Automatically copy account password to identity

This commit is contained in:
M66B 2018-08-08 10:31:11 +00:00
parent a5af366b03
commit 94f0e866e1
1 changed files with 15 additions and 0 deletions

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) {