I am stuck with dictionary hints while entering password (or any other text field). I am doing it in this way:
editText.setInputType(InputType.TYPE_CLASS_TEXT |
InputType.TYPE_TEXT_VARIATION_PASSWORD |
InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);
But anyway when user selects keyboard predictions as "on" - during password entering it shows dictionary hints, which is stupid for passwords!
What I'm doing wrong?