Turning spellcheck/suggestions off

SCIS

Active Member
Licensed User
Longtime User
Hi,

We're making a login screen and whenever we're filling in the data (email and password), spellcheck/suggestions starts popping up even though PasswordMode is true on the password EditText. This kinda defeats the purpose of a password EditText as whatever you're typing just shows up on the bottom, eagerly waiting to be added to your dictionary as soon as you press it.

We tried using this:
B4X:
EditText1.InputType = Bit.Or(EditText1.InputType, 524288)
and this:
B4X:
EditText1.InputType = Bit.Or(EditText1.InputType, 524289)
Neither worked :(

Thanks a bunch (really, thanks a lot for all the help so far),
SCIS_Adrian


:EDIT:

Nvm, TheDesolateSoul just helped us out :)

B4X:
etpw.InputType = Bit.Or(etpw.InputType, 0x00000080)
 
Last edited:
Top