Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Motorola Bionic - input type textPersonName and textCapWords not working

I can't get an EditText field in my app to actually work with inputType="textCapWords" or "textPersonName" on a Droid Bionic. Other phones I've tested seem to be fine. None of the capitalization inputTypes seem to work. I've also tried the deprecated capitalization attribute. And setting things programmatically.

Has anyone else run into this problem? Any suggestions aside from implementing custom functionality using TextWatcher?

<EditText
        android:id="@+id/last_name_editor"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:hint="@string/last_name"
        android:inputType="textCapWords"/>
like image 847
loeschg Avatar asked Feb 28 '13 17:02

loeschg


1 Answers

Can you check your Device keyboard setting .In some device(Samsung Note 2) they give auto Capitalization check /UN-check option.

like image 150
Raj008 Avatar answered Sep 22 '22 17:09

Raj008