My style for my TextInputLayout
<style name="inputText" parent="Widget.Design.TextInputLayout">
<item name="android:textColor">@color/neon_blue</item>
<item name="android:inputType">textVisiblePassword|textCapCharacters</item>
<item name="android:textSize">20sp</item>
</style>
has inputType
textVisiblePassword|textCapCharacters
I have textCapCharacters
to make text all caps. I have textVisiblePassword
to prevent key board from underlining text as it is typed.
textVisiblePassword
overrides textCapCharacters
because passwords are case sensitive.
How can I prevent underlining of typed text and also have all caps?
edit
textNoSuggestions
does not remove underline from typing which is why I added textVisiblePassword
but textVisiblePassword
appears to override textCapCharacters
because (I think) that passwords are enforced to be case sensitive.