This will have a really simple answer, but I can\'t seem to find what it is. I want to disable the auto-capitalization of an EditText so that, by default, the first letter e
You could try using android:inputType="none" instead.
android:inputType="none"
UPDATE:
You could also try using android:inputType="text|textEmailAddress"
android:inputType="text|textEmailAddress"