In my android application, I have some EditText
s. Those EditText
s will serve as password fields, but I've not marked them as password fields in the attributes, so that the font of hint text matches the font of hint in normal EditText
widgets.
The problem I have though is that the password is revealed in the keyboard suggestion while it is typed, although it is hidden as I've used:
EditText.setTransformationMethod(new PasswordTransformationMethod());
What should I do to disable those suggestions?