Android - disable smart text

I want to disable predictive texing. When we enter the input through the softkeyboard, the predictive text message should not appear, I just need a code to disable the smart text message. Can someone help me?

+7
android
source share
1 answer

You can set the inputType property in the XML layout or call setInputType () with one or more (separated | |) of these values.

To disable offers, use the text | textNoSuggestions. However, the Sense Sense keyboard seems to ignore this by adding textFilter here.

+1
source share

All Articles