android - Disable Predictive Text in EditText -
i think pretty question, how disable predictive text edittext in android. set property in edittext's xml or property in edittext's object... or both? thanks!
you can set inputtype
property in xml layout or call setinputtype()
1 or more (separated |
) of those values.
to disable suggestions use text|textnosuggestions
. sense ui keyboard seems ignore that, adding textfilter
works here.
Comments
Post a Comment