Actually I had the same problem and found the real solution.
"autoText" is a deprecated feature.
However looking more closely on the "textAutoComplete" function I
found that it states that the application will provide the correction
list itself.
In stead, just use the "textAutoCorrect" in "android:inputType"
without the "textAutoComplete" and it will work. Did for me, at
least!

so in the initial example of this thread you would use:

<EditText android:id="@+id/alarmMemo"
android:layout_width="fill_parent"
android:layout_height="match_parent" android:imeOptions="actionNone"
android:inputType="text|textAutoCorrect|textShortMessage"
android:maxLength="150"></EditText>

> I found the solution courtesy of a quick peek at the WordPress for
> Android app's resource files! The answer is to remove the
> android:inputType attribute and substitute it with
> android:autoText="true". Simple yet effective!

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to