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 entered with not be automatically capitalized. I still want to allow capitalization, but only if the user manually does so.

I've tried android:capitalize="none" on my EditText, and I've tried android:inputType="text" but both still auto-capitalize the first letter. I don't want to use a TextWatcher because on the soft keyboard it will still show the shift key as pressed for the first letter, and I'm nit-picky and don't want that to show.

link|improve this question

Does the auto-capitalization occurred by your current keyboard software? If it's true, disable your keyboard's auto-cap setting. – basicsharp Aug 8 '11 at 1:20
feedback

2 Answers

up vote 3 down vote accepted

You could try using android:inputType="none" instead.

UPDATE:

You could also try using android:inputType="text|textEmailAddress"

link|improve this answer
Still auto-capitalizes. I would suspect specifying "none" would just use whatever default settings the user has on his phone. – Jason Robinson Aug 8 '11 at 15:01
I found another way that worked. I put it in my update. – Arash A. Aug 9 '11 at 2:06
That did the trick, thanks. – Jason Robinson Aug 9 '11 at 17:31
feedback

Have you tried android:inputType="textFilter"? That will disable all text filters, so there's not auto-correcting.

link|improve this answer
Still auto-capitalizes. – Jason Robinson Aug 8 '11 at 15:02
That's really weird, it doesn't auto-capitalize for me. Are you using just a regular EditText or did you modify it? – Brian Aug 8 '11 at 23:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.