Android Question NO_SUGGESTIONS not working on Galaxy phone

Arf

Well-Known Member
Licensed User
Longtime User
I'm trying to stop suggestions/autocomplete from suggesting words when entering a field in an editBox, like this:
NameEntryBox.InputType = Bit.Or(NameEntryBox.INPUT_TYPE_TEXT,0x00080000)

It works fine on most tablets, but on my galaxy S3 phone the suggestions are still there.
Is there anything further I can do to porevent this?
 

Informatix

Expert
Licensed User
Longtime User
I'm trying to stop suggestions/autocomplete from suggesting words when entering a field in an editBox, like this:
NameEntryBox.InputType = Bit.Or(NameEntryBox.INPUT_TYPE_TEXT,0x00080000)

It works fine on most tablets, but on my galaxy S3 phone the suggestions are still there.
Is there anything further I can do to porevent this?
This issue is fixed in the MaskedEditText library.
 
  • Like
Reactions: Arf
Upvote 0
Top