How Do I Add An "edittext" That When You Type In A Specific Word An Action Happens
How do I add a 'edittext' that when you type in a specific word such as 'apple' it will make a new xml page pop up. But if the user types in a different word besides 'apple' it wil
Solution 1:
You should use a TextWatcher to watch for changes and do whatever you want on afterTextChanged()
.
Post a Comment for "How Do I Add An "edittext" That When You Type In A Specific Word An Action Happens"