I have got an EditText in my Android app where you can type in some text. What I want to do is change every single character to another one (some kind of enciphering). Therefore I first have to read every single character.
How can I do that?
UPDATE:
The text in the edit text is to be encoded on a button click.
You can use InputFilter.
As you go on typing below snippet will replace each character by $.
Following Snippet will help you.
Below is my working snippet