Is it possible to prevent the keyboard from performing a spellcheck.
For example, i am using Gboard and entering information into a textfield. This field is a username on a Login page and the keyboard is telling me that it is spelt incorrectly (underlined with a red line)
When I tap on the field again the "Add to Dictionary" pops up.
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. EditText1.InputType = Bit.Or(EditText1.InputType, 0x00000080) fills edittext1 with dots. How do...
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...