I have an EditText where I set a hint with
editText.setHint("Hint 1");
This works because the EditText was empty before. But now I want to change the hint so that "Hint2" is shown in the EditText.
Unfortunatelly
editText.setHint("Hint2");
doesn't work because the EditText is not empty this time.
Does anyone know a solution?