I have disabled the suggestions on my EditText when a certain character limit is reached using
mEditQuestionBox.setInputType(InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);
I, however, need the suggestions capability back if the user were to press backspace and type again. Help?
Essentially It boils down to this. Is there an InputType available to enable the suggestions again? If not, can anyone think of a workaround?