I can display a keyboard with capital letters:
android:inputType="textCapCharacters"
but can i show the amount of raw?
WITH
android:inputType="textVisiblePassword"
I can have the desired display while holding shift in the keyboard
example
But can I initialize editText to show that?
PS: already tried
android:inputType="textVisiblePassword|textCapCharacters"
but it didn’t work.
source
share