Android Question How to enable/disable autocorrect in edittext

rwblinn

Well-Known Member
Licensed User
Longtime User
Hi,

is there a way to enable/disable autocorrect for a specific edittext field?
Something like
B4X:
edittext1.autocorrect = true|false
 
Last edited:

rboeck

Well-Known Member
Licensed User
Longtime User
Hi,

i use this sub:
B4X:
Sub DisableSpellCheck(eT As EditText)
    eT.inputType=Bit.Or(eT.InputType, 524288)   
End Sub

I hope, it helps!

Reinhard
 
Upvote 0
Top