Number suggestions pop up when you tap at edittext. Is there a way to receive input as number but at the same time prevent number suggestions from displaying?
I have found something similar like this. but it accepts text not numbers!
Turn off autosuggest for EditText?
below are not working since it only accepts texts and then removes suggestions.
android:inputType="textFilter"
android:inputType="textNoSuggestions"
I have tried
android:inputType="number|textNoSuggestions"
It results to accepting non-numeric symbols and does not remove suggestions either.