Gaurav Mandlik
Gaurav Mandlik

Reputation: 578

How can i remove underline of word created by android custom Keyboard

i am trying to remove the underline effect created by android custom keyboad like here:

this picture

how can i remove this help me. thanks.

Upvotes: 0

Views: 17788

Answers (2)

Jim
Jim

Reputation: 31

I switched off all the auto correct and suggestion stuff in Gboard (google's keyboard). Still the line!

So, in Gboard settings - go to settings, language & input then note that Gboard has to be set as the spell checker for the system. So switch ON spell check to select Gboard, then switch off spell check in Gboard settings (and not system which remains on).

Upvotes: 3

hoangdv
hoangdv

Reputation: 16127

I think this is feature "auto spell check", you can try

Set this in your layout's xml for your EditText:

android:inputType="textNoSuggestions"

Upvotes: 4

Related Questions