3 つの編集テキスト フィールドがあります。3つすべてにテキストウォッチャーを使用しました。それはうまくいっています。つまり、edittext A に何かを入力すると、A に基づいて結果が提供されます。edittext B と edittext C も同様です。統合された結果を取得したいと考えています。私はこのように結果をフィルタリングしたい:
国番号に「2」、登録番号に「3」と入力すると、次のようになります。
国籍番号 : 登録番号 : 名前 :
234 34 john
2890 345 xxxx
21 3 smith
フィルター処理された値を arraylist に保存し、その arraylist をアダプターに渡します。
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));
}
});
これは私の ArrayList です:
data = new ArrayList<DataAttendance>();
filtered_data = new ArrayList<DataAttendance>();
// 私のデータ モデル クラス :
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;
}
今、私は次のようになっています:
国番号に「2」、登録番号に「3」と入力すると、次のようになります。
国籍番号 : 登録番号 : 名前 :
234 434 siva
2890 345 elma
21 23 laura
このような..
ここで助けが得られることを願っています..!
//------------------------------------------------ ------------------------------------
私は別の配列リストで解決策を得ました:
ここにあります :
それは誰かを助けるかもしれません..
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));
}
}
});