[Solved] Android Studio (Java) Replace function [closed]
In Android, inside a Layout you insert an EditText, it’s that text field you wanted where you can write text into it and also listen to text changes so you can do those manipulations you were talking about. Create a TextWatcher and add it to the EditText using addTextChangedListener(TextWatcher variable) new TextWatcher() { @Override public … Read more