Turn off IME suggestions:
From:
https://developer.android.com/training/keyboard-input/style.html#Type
Specify the Keyboard Type.
Makes available.
For example, if you'd like an input method for entering a phone number, use the "phone" value:
<EditText
android:id="@+id/phone"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:hint="@string/phone_hint"
android:inputType="phone" />
Resulting in a Numeric keyboard with no suggestions.
Having read a post mentioning that there is no API for IME, I still WISH there is a way to disable 'android:hint="@string/phone_hint"'
OR
Provide Auto-complete Suggestions.
AS an enhanced IME library.
From:
https://developer.android.com/training/keyboard-input/style.html#Type
Specify the Keyboard Type.
Makes available.
For example, if you'd like an input method for entering a phone number, use the "phone" value:
<EditText
android:id="@+id/phone"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:hint="@string/phone_hint"
android:inputType="phone" />
Resulting in a Numeric keyboard with no suggestions.
Having read a post mentioning that there is no API for IME, I still WISH there is a way to disable 'android:hint="@string/phone_hint"'
OR
Provide Auto-complete Suggestions.
AS an enhanced IME library.