I am writing a spelling quiz app. I want the EditText where the user will enter their guess to not provide any spelling hints or suggested words. I have the
android:inputType="textNoSuggestions|textPhonetic"
set, but I have seen that with some keyboards (touchpal for one), you still get word hints. Btw, I also tried it without the textPhonetic--same result. On the other hand, it looks like the standard default keyboard does follow the inputType. Is there a way to force the app/editText to use the default keyboard? If not, is there a way to tell pragmatically if a user has set the keyboard to something non-standard? Or is there a way to tell if a particular user's keyboard will honor the textNoSuggestions setting?