I have 3 edit text fields. I used text watcher for all the three. It is working well. which means, if I type something in edittext A it is providing result based on A. same in edittext B and edittext C. I want to get consolidated result. I want to filter the result like this :
if I type "2" in national no and type "3" in register no, the result should be like this
National no : Register No : Name :
234 34 john
2890 345 xxxx
21 3 smith
I am saving the filtered value in an arraylist and passing that arraylist to adapter.
edtNationalityInfo.addTextChangedListener(new TextWatcher() {
public void afterTextChanged(Editable s) {
}
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
}
public void onTextChanged(CharSequence s, int start, int before,
int count) {
textlength = edtNationalityInfo.getText().length();
if (textlength > 0)
nationalFlag = true;
else
nationalFlag = false;
// filtered_data.clear();
for (int i = 0; i < data.size(); i++) {
if (textlength <= data.get(i).get_nationalityno().length()) {
if (edtNationalityInfo
.getText()
.toString()
.equalsIgnoreCase(
(String) data.get(i)
.get_nationalityno()
.subSequence(0, textlength))) {
filtered_data.add(data.get(i));
}
}
}
lvVotersList.setAdapter(new TextWatcherAdapter(Attendance.this,
filtered_data));
}
});
edtVoterName.addTextChangedListener(new TextWatcher() {
public void afterTextChanged(Editable s) {
}
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
}
public void onTextChanged(CharSequence s, int start, int before,
int count) {
textlength = edtVoterName.getText().length();
if (textlength > 0)
nameFlag = true;
else
nameFlag = false;
// filtered_data.clear();
for (int i = 0; i < data.size(); i++) {
if (textlength <= data.get(i).get_name().length()) {
if (edtVoterName
.getText()
.toString()
.equalsIgnoreCase(
(String) data.get(i).get_name()
.subSequence(0, textlength))) {
filtered_data.add(data.get(i));
}
}
}
lvVotersList.setAdapter(new TextWatcherAdapter(Attendance.this,
filtered_data));
}
});
This is my ArrayList :
data = new ArrayList<DataAttendance>();
filtered_data = new ArrayList<DataAttendance>();
// My data Model class :
public class DataAttendance {
public String _id = null;
public String _serialno = null;
public String _nationalityno = null;
public String _voteCasted = null;
public String _voteCastedTime = null;
public String _name = null;
public DataAttendance() {
}
public DataAttendance(String _name, String _serialno,
String _nationalityno, String _voteCasted, String _voteCastedTime) {
this._name = _name;
this._nationalityno = _nationalityno;
this._serialno = _serialno;
this._voteCasted = _voteCasted;
this._voteCastedTime = _voteCastedTime;
}
public String get_id() {
return _id;
}
public void set_id(String _id) {
this._id = _id;
}
public String get_name() {
return _name;
}
public void set_name(String _name) {
this._name = _name;
}
public String get_nationalityno() {
return _nationalityno;
}
public void set_nationalityno(String _nationalityno) {
this._nationalityno = _nationalityno;
}
public String get_serialno() {
return _serialno;
}
public void set_serialno(String _serialno) {
this._serialno = _serialno;
}
public String get_voteCasted() {
return _voteCasted;
}
public void set_voteCasted(String _voteCasted) {
this._voteCasted = _voteCasted;
}
public String get_voteCastedTime() {
return _voteCastedTime;
}
public void set_voteCastedTime(String _voteCastedTime) {
this._voteCastedTime = _voteCastedTime;
}
Now I am getting like :
if I type "2" in national no and type "3" in register no, the result should be like this
National no : Register No : Name :
234 434 siva
2890 345 elma
21 23 laura
like this..
Hope I can get help here..!
//------------------------------------------------------------------------------------
I have got the solution with the another array list :
Here it is :
It may help someone..
edtVoterName.addTextChangedListener(new TextWatcher() {
public void afterTextChanged(Editable s) {
}
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
}
public void onTextChanged(CharSequence s, int start, int before,
int count) {
int Votertextlength = edtVoterName.getText().length();
if (Votertextlength > 0) {
nameFlag = true;
} else {
nameFlag = false;
}
textlength = edtVoterName.getText().length();
if (nationalFlag == true || registerFlag == true) {
Log.d("Attendance Flag : ",
" The Attendance nationalFlag == " + nationalFlag
+ " registerFlag == : " + registerFlag);
ArrayList<DataAttendance> temp_data;
temp_data = new ArrayList<DataAttendance>();
textlength = edtVoterName.getText().length();
// filtered_data.clear();
for (int i = 0; i < filtered_data.size(); i++) {
if (textlength <= filtered_data.get(i).get_name()
.length()) {
if (edtVoterName
.getText()
.toString()
.equalsIgnoreCase(
(String) filtered_data.get(i)
.get_name()
.subSequence(0, textlength))) {
temp_data.add(filtered_data.get(i));
}
}
}
filtered_data = temp_data;
lvVotersList.setAdapter(new TextWatcherAdapter(
Attendance.this, filtered_data));
} else {
filtered_data.clear();
for (int i = 0; i < data.size(); i++) {
if (textlength <= data.get(i).get_name()
.length()) {
if (edtVoterName
.getText()
.toString()
.equalsIgnoreCase(
(String) data.get(i)
.get_name()
.subSequence(0, textlength))) {
filtered_data.add(data.get(i));
}
}
}
lvVotersList.setAdapter(new TextWatcherAdapter(
Attendance.this, filtered_data));
}
}
});