I have an EditText field which needs to be a numeric password field. Everything works OK in portrait mode; not in landscape. When the user selects the EditText field, the UI zooms into the field and when I type all the characters are visible.
I need a numeric keyboard also. I tried setting the input type to text password|number. If I remove "number" option everything works right; otherwise no.
Any suggestions?
To fix the issue where the password is visible in the landscape mode full-screen editor (as Marcus described), you can add the following line to disable the full-screen editor:
You may also want to change the typeface to monospace to better emulate the text-password behavior:
This how to make input password that has hint which not converted to * !!.
On XML :
thanks to : mango and rjrjr for the insight :D.