I set the InputType of an EditText to TYPE_NULL with:
editText.setInputType(InputType.TYPE_NULL);
I can set it to TYPE_NULL, it works! But if I want to set InputType to something else, like TYPE_CLASS_TEXT, it doesn't work!
How can I change it dynamically in code? Like to TYPE_NULL, then to TYPE_CLASS_TEXT and to TYPE_NULL again?
MainActivity1