when i have only few edit texts
using textchangeListener or compare texts to find the text is changed or not if i have more than 20 edittext
how to know the edit text is changed or not
i found nearly same asked here 1. How to check if an EditText was changed or not? 2. Knowing when Edit text is done being edited this is helpful ...There is any simple way to do this.
String temp = "aa";
if(temp.equals(edittext.getText().toString()) {
Log.e("Not Change",temp);
} else {
Log.e("Changed Value",edittext.getText().toString());
}
Thanks in advance...