Android Question [solved]How to turn off spell check?

anOparator

Active Member
Licensed User
Longtime User
B4X:
EditText1.InputType = Bit.Or(EditText1.InputType, 524289)
turns it off, using B4A v5.80 until rotate screen, with this code in Activity_Create or Activity_Resume. edittext1 was made in the Designer.

B4X:
EditText1.InputType = Bit.Or(EditText1.InputType, 0x00000080)
fills edittext1 with dots.
How do we turn spell check off?
Thanks in advance.
 

anOparator

Active Member
Licensed User
Longtime User
oops , when depending on emulators , was about to Export to .zip when i tested on a device, the code works.

edit: Not that anyone will change orientation 10 times but on a Moto E rotating 10 times will enable spell check at least 3 times. And it may just be this device.
 
Last edited:
Upvote 0
Top