blustcoder / twitta

Automatically exported from code.google.com/p/twitta
0 stars 0 forks source link

Tweets and DMs should be auto-corrected for spelling and capitalization. #29

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
I would expect text to be auto-corrected (capitalization, spelling) as it
is in most other text entry fields (eg. text messaging, IMs, etc). This
does not happen when sending tweets or direct messages.

It looks to me like the XML attributes for the EditText boxes should have
the following added (though these are theoretically the defaults):
android:autoText="true"
android:capitalize="sentences"

Original issue reported on code.google.com by jeremy.logan on 28 Jul 2009 at 10:08

GoogleCodeExporter commented 9 years ago
Upon further investigation it looks like changing the following:
    android:inputType="textShortMessage"
to:
    android:inputType="textShortMessage|textAutoCorrect|textCapSentences"
should solve the problem.

Original comment by jeremy.logan on 28 Jul 2009 at 10:30