Dynamic leading text for android's EditText
问题 I've looked into using a TextWatcher and an InputFilter , but I'm not too sure how to approach this problem. The idea is to have an EditText that inserts text from right to left. As the use input changes, I would like the following to occur. - User enters "1" -> Text formats as 00:01 - User enters "2" -> Text formats as 00:12 - User enters "8" -> Text formats as 01:28 How could I approach this? Inputfilter seems to be for excluding text and using setText inside the TextWatcher appears to run