How do I set multiple input types in an EditText on Android?
问题 I am trying to create an EditText with auto-capitalization and auto-correction implemented. I have manually figured out how to add InputFilter s to allow auto-capitalization, though this only works after the first letter is typed, and I have had no luck with auto correction (I tried to create an InputFilter that used AutoText , but I'm not sure how all that works). Ideally, I could just use EditText.setInputType(...) to handle everything, but so far this has not worked. Is there a way to