Android: inputType, textCapWords after textCapCharacters not working

I have one EditText and I set a piece of input filter. I give textCapCharacters, and when the soft keyboard is displayed, it works as if all the input data is in uppercase (only capital letters), then I got another EditText with the textCapWords input filter and when the soft keyboard is displayed, the letters are still in the upper and lower characters of the first character, they are still in uppercase, just as they received the input filter textCapCharacters, even the second field received the textCapWords property. It acts like textCapCharacters, sets a special flag that is not cleared with other files.

<EditText android:inputType="textCapCharacters" /> <EditText android:inputType="textCapWords" /> 
+4
source share

All Articles