how to disable spellcheck Android edittext

android

Solution

You can do it with following code. Just paste it in layout of `EditText`.

android:inputType="textNoSuggestions"

Problem

I want to remove the underlines from texts inside edittext fields. How can I do that?

Original source