[android-developers] Re: Disable autosuggest/correct

2011-02-09 Thread André
Thanks Kostya How do I do that in java? Since I want it to be an option. On Feb 9, 7:24 pm, Kostya Vasilyev kmans...@gmail.com wrote: Andre, This works for me: android:inputType=text|textMultiLine|textNoSuggestions|textCapSentences on a Motorola Milestone with the Motorola Keyboard, but

Re: [android-developers] Re: Disable autosuggest/correct

2011-02-09 Thread Kostya Vasilyev
Umm, you call setInputType with flags according to this: http://developer.android.com/reference/android/text/InputType.html InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_MULTI_LINE | InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS seems about right. -- Kostya 09.02.2011 21:27, André

[android-developers] Re: Disable autosuggest/correct

2011-02-09 Thread André
That doesn't work when I try it on my Desire. Could that be because HTC has change their version of android a little? // André On Feb 9, 7:38 pm, Kostya Vasilyev kmans...@gmail.com wrote: Umm, you call setInputType with flags according to this:

Re: [android-developers] Re: Disable autosuggest/correct

2011-02-09 Thread Kostya Vasilyev
On my Milestone the XML fragment I posted below only works for one of the two keyboards built into the firmware. Perhaps HTC also decided that users always want autocorrection? :) -- Kostya 09.02.2011 21:50, André пишет: That doesn't work when I try it on my Desire. Could that be because HTC

[android-developers] Re: Disable autosuggest/correct

2011-02-09 Thread André
They probably have! :) Thanks for the help though! On Feb 9, 7:57 pm, Kostya Vasilyev kmans...@gmail.com wrote: On my Milestone the XML fragment I posted below only works for one of the two keyboards built into the firmware. Perhaps HTC also decided that users always want autocorrection? :)

Re: [android-developers] Re: Disable autosuggest/correct

2011-02-09 Thread Kostya Vasilyev
Just one last thought - you might want to check your code with another keyboard, there are plenty in Market, just to be sure whether your code is correct. Good luck. -- Kostya 09.02.2011 22:34, André пишет: They probably have! :) Thanks for the help though! On Feb 9, 7:57 pm, Kostya