I have this code:
AutoCompleteTextView et = new AutoCompleteTextView(context);
et.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);
With this code the AutoCompleteTextView
prevents the backspace key from working! If I change the class type to EditText, the same behaviour occurs.
But with this code the backspace key works:
AutoCompleteTextView et = new AutoCompleteTextView(context);
et.setInputType(InputType.TYPE_CLASS_TEXT);
I don't want auto-suggestions from the keyboard, that's why I'm using an AutocompleteTextView! Any suggestions?
I'm testing against Android 2.3.