Android Question keyboard typeahead

jaimo9

Member
Licensed User
Longtime User
I know that edittxt1.input = 52428 clears typeahead/spelling, but it also converts the first letter to uppercase. I just want to get rid of typeahead.
 

jaimo9

Member
Licensed User
Longtime User
I found the following gets rid of typeahead
edtLetters.inputType = Bit.OR(edtLetters.INPUT_TYPE_TEXT, 12)
 
Upvote 0
Top