I am trying to create an EditText with auto-capitalization and auto-correction implemented. I have manually figured out how to add InputFilters to allo
EditText
InputFilter
Through XML it would be setup like so.
android:inputType="textMultiLine|textNoSuggestions"
You simply add a pipe (|) between variables. I see you were doing it through code but I was just throwing this out there for reference.
|