I need to create custom bullet for password for editText and put some padding between bullet symbols.
Is there some way to do this?
I need to create custom bullet for password for editText and put some padding between bullet symbols.
Is there some way to do this?
For changing the character that is displayed you can call the method setTransformationMethod (TransformationMethod method) and pass it a custom PasswordTransformationMethod.
This could look something like the following:
and then set it like this:
Source
For changing the padding and such you should use either use textScaleX or if you are at API Level 21+ use letterSpacing in the XML.