I have created a custom EditText and trying to set its inputType to numberPassword but its still showing me digits.
What I tried:
- Add inputType in onDraw method of CustomEditText class.
- Setting transformation method.
But still not working.
Current State of my custom EditText: I am not setting inputType anywhere in the custom editText. I am only setting it in xml file just like below:
android:inputType="numberPassword"
Any help will be much appreciated regarding if there is any custom editText settings required in CustomEditText class.