Android ListView用EditText實現(xiàn)搜索功能效果

在查閱資料以后,發(fā)現(xiàn)其實Android中已經(jīng)幫我們實現(xiàn)了這個功能,如果你的ListView使用的是系統(tǒng)的ArrayAdapter抚恒,那么恭喜你,下面的事情就很簡單了络拌,你只需要調(diào)用下面的代碼就可以實現(xiàn)了:

<pre class="brush:java;">searchEdittext.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence cs, int arg1, int arg2, int arg3) {
// When user change the text
mAdapter.getFilter().filter(cs);
}

@Override
public void beforeTextChanged(CharSequence cs, int arg1, int arg2, int arg3) {
//
}

@Override
public void afterTextChanged(Editable arg0) {
//
}
});
</pre>

你沒看錯俭驮,就一行 mAdapter.getFilter().filter(cs);便可以實現(xiàn)這個搜索功能。不過我相信大多數(shù)Adapter都是自定義的春贸,基于這個需求混萝,我去分析了下ArrayAdapter,發(fā)現(xiàn)它實現(xiàn)了Filterable接口祥诽,那么接下來的事情就比較簡單了譬圣,就讓我們自定的Adapter也去實現(xiàn)Filterable這個接口,不久可以實現(xiàn)這個需求了嗎雄坪。下面貼出ArrayAdapter中顯示過濾功能的關(guān)鍵代碼:

<pre class="brush:java;">public class ArrayAdapter<T> extends BaseAdapter implements Filterable {
/**

  • Contains the list of objects that represent the data of this ArrayAdapter.
  • The content of this list is referred to as "the array" in the documentation.
    */
    private List<T> mObjects;

/**

  • Lock used to modify the content of {@link #mObjects}. Any write operation
  • performed on the array should be synchronized on this lock. This lock is also
  • used by the filter (see {@link #getFilter()} to make a synchronized copy of
  • the original array of data.
    */
    private final Object mLock = new Object();

// A copy of the original mObjects array, initialized from and then used instead as soon as
// the mFilter ArrayFilter is used. mObjects will then only contain the filtered values.
private ArrayList<T> mOriginalValues;
private ArrayFilter mFilter;

...

public Filter getFilter() {
if (mFilter == null) {
mFilter = new ArrayFilter();
}
return mFilter;
}

/**

  • <p>An array filter constrains the content of the array adapter with

  • a prefix. Each item that does not start with the supplied prefix

  • is removed from the list.</p>
    */
    private class ArrayFilter extends Filter {
    @Override
    protected FilterResults performFiltering(CharSequence prefix) {
    FilterResults results = new FilterResults();

    if (mOriginalValues == null) {
    synchronized (mLock) {
    mOriginalValues = new ArrayList<T>(mObjects);
    }
    }

    if (prefix == null || prefix.length() == 0) {
    ArrayList<T> list;
    synchronized (mLock) {
    list = new ArrayList<T>(mOriginalValues);
    }
    results.values = list;
    results.count = list.size();
    } else {
    String prefixString = prefix.toString().toLowerCase();

    ArrayList<T> values;
    synchronized (mLock) {
    values = new ArrayList<T>(mOriginalValues);
    }

    final int count = values.size();
    final ArrayList<T> newValues = new ArrayList<T>();

    for (int i = 0; i < count; i++) {
    final T value = values.get(i);
    final String valueText = value.toString().toLowerCase();

     // First match against the whole, non-splitted value
     if (valueText.startsWith(prefixString)) {
       newValues.add(value);
     } else {
       final String[] words = valueText.split(" ");
       final int wordCount = words.length;
    
       // Start at index 0, in case valueText starts with space(s)
       for (int k = 0; k < wordCount; k++) {
         if (words[k].startsWith(prefixString)) {
           newValues.add(value);
           break;
         }
       }
     }
    

    }

    results.values = newValues;
    results.count = newValues.size();
    }

    return results;
    }

@Override
protected void publishResults(CharSequence constraint, FilterResults results) {
  //noinspection unchecked
  mObjects = (List<T>) results.values;
  if (results.count > 0) {
    notifyDataSetChanged();
  } else {
    notifyDataSetInvalidated();
  }
}

}
}

</pre>

實現(xiàn)

首先寫了一個Model(User)模擬數(shù)據(jù)

<pre class="brush:java;">public class User {
private int avatarResId;
private String name;

public User(int avatarResId, String name) {
this.avatarResId = avatarResId;
this.name = name;
}

public int getAvatarResId() {
return avatarResId;
}

public void setAvatarResId(int avatarResId) {
this.avatarResId = avatarResId;
}

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}
}

</pre>

自定義一個Adapter(UserAdapter)繼承自BaseAdapter厘熟,實現(xiàn)了Filterable接口,Adapter一些常見的處理维哈,我都去掉了绳姨,這里主要講講Filterable這個接口。

<pre class="brush:java;">/**

  • Contains the list of objects that represent the data of this Adapter.
  • Adapter數(shù)據(jù)源
    */
    private List<User> mDatas;

//過濾相關(guān)
/**

  • This lock is also used by the filter
  • (see {@link #getFilter()} to make a synchronized copy of
  • the original array of data.
  • 過濾器上的鎖可以同步復(fù)制原始數(shù)據(jù)阔挠。

*/
private final Object mLock = new Object();

// A copy of the original mObjects array, initialized from and then used instead as soon as
// the mFilter ArrayFilter is used. mObjects will then only contain the filtered values.
//對象數(shù)組的備份飘庄,當(dāng)調(diào)用ArrayFilter的時候初始化和使用。此時购撼,對象數(shù)組只包含已經(jīng)過濾的數(shù)據(jù)跪削。
private ArrayList<User> mOriginalValues;
private ArrayFilter mFilter;

@Override
public Filter getFilter() {
if (mFilter == null) {
mFilter = new ArrayFilter();
}
return mFilter;
}

</pre>

寫一個ArrayFilter類繼承自Filter類谴仙,我們需要兩個方法:

<pre class="brush:java;">//執(zhí)行過濾的方法
protected FilterResults performFiltering(CharSequence prefix);</pre>

<pre class="brush:java;">//得到過濾結(jié)果
protected void publishResults(CharSequence prefix, FilterResults results);</pre>

貼上完整的代碼,注釋已經(jīng)寫的不能再詳細(xì)了

<pre class="brush:java;"> /**

  • 過濾數(shù)據(jù)的類
    /
    /
    *

  • <p>An array filter constrains the content of the array adapter with

  • a prefix. Each item that does not start with the supplied prefix

  • is removed from the list.</p>

  • <p/>

  • 一個帶有首字母約束的數(shù)組過濾器碾盐,每一項不是以該首字母開頭的都會被移除該list晃跺。
    */
    private class ArrayFilter extends Filter {
    //執(zhí)行刷選
    @Override
    protected FilterResults performFiltering(CharSequence prefix) {
    FilterResults results = new FilterResults();//過濾的結(jié)果
    //原始數(shù)據(jù)備份為空時,上鎖毫玖,同步復(fù)制原始數(shù)據(jù)
    if (mOriginalValues == null) {
    synchronized (mLock) {
    mOriginalValues = new ArrayList<>(mDatas);
    }
    }
    //當(dāng)首字母為空時
    if (prefix == null || prefix.length() == 0) {
    ArrayList<User> list;
    synchronized (mLock) {//同步復(fù)制一個原始備份數(shù)據(jù)
    list = new ArrayList<>(mOriginalValues);
    }
    results.values = list;
    results.count = list.size();//此時返回的results就是原始的數(shù)據(jù)掀虎,不進(jìn)行過濾
    } else {
    String prefixString = prefix.toString().toLowerCase();//轉(zhuǎn)化為小寫

    ArrayList<User> values;
    synchronized (mLock) {//同步復(fù)制一個原始備份數(shù)據(jù)
    values = new ArrayList<>(mOriginalValues);
    }
    final int count = values.size();
    final ArrayList<User> newValues = new ArrayList<>();

    for (int i = 0; i < count; i++) {
    final User value = values.get(i);//從List<User>中拿到User對象
    // final String valueText = value.toString().toLowerCase();
    final String valueText = value.getName().toString().toLowerCase();//User對象的name屬性作為過濾的參數(shù)
    // First match against the whole, non-splitted value
    if (valueText.startsWith(prefixString) || valueText.indexOf(prefixString.toString()) != -1) {//第一個字符是否匹配
    newValues.add(value);//將這個item加入到數(shù)組對象中
    } else {//處理首字符是空格
    final String[] words = valueText.split(" ");
    final int wordCount = words.length;

       // Start at index 0, in case valueText starts with space(s)
       for (int k = 0; k < wordCount; k++) {
         if (words[k].startsWith(prefixString)) {//一旦找到匹配的就break,跳出for循環(huán)
           newValues.add(value);
           break;
         }
       }
     }
    

    }
    results.values = newValues;//此時的results就是過濾后的List<User>數(shù)組
    results.count = newValues.size();
    }
    return results;
    }

//刷選結(jié)果
@Override
protected void publishResults(CharSequence prefix, FilterResults results) {
  //noinspection unchecked
  mDatas = (List<User>) results.values;//此時付枫,Adapter數(shù)據(jù)源就是過濾后的Results
  if (results.count > 0) {
    notifyDataSetChanged();//這個相當(dāng)于從mDatas中刪除了一些數(shù)據(jù)烹玉,只是數(shù)據(jù)的變化,故使用notifyDataSetChanged()
  } else {
    /**
     * 數(shù)據(jù)容器變化 ----> notifyDataSetInValidated

     容器中的數(shù)據(jù)變化 ----> notifyDataSetChanged
     */
    notifyDataSetInvalidated();//當(dāng)results.count<=0時阐滩,此時數(shù)據(jù)源就是重新new出來的二打,說明原始的數(shù)據(jù)源已經(jīng)失效了
  }
}

}

</pre>

特別說明

<pre class="brush:java;">//User對象的name屬性作為過濾的參數(shù)
final String valueText = value.getName().toString().toLowerCase();</pre>

這個地方是,你要進(jìn)行搜索的關(guān)鍵字叶眉,比如我這里使用的是User對象的Name屬性址儒,就是把用戶名當(dāng)作關(guān)鍵字來進(jìn)行過濾篩選的。這里要根據(jù)你自己的具體邏輯來進(jìn)行設(shè)置衅疙。

<a onclick="doCopy('code18366')" id="copybut18366" class="copybut" style="CURSOR: pointer" data="18366"><u>復(fù)制代碼</u></a>

代碼如下:

if (valueText.startsWith(prefixString) || valueText.indexOf(prefixString.toString()) != -1)

在這里進(jìn)行關(guān)鍵字匹配莲趣,如果你只想使用第一個字符匹配,那么你只需要使用這行代碼就可以了:

<pre class="brush:java;">//首字符匹配
valueText.startsWith(prefixString)</pre>

如果你的需求是只要輸入的字符出現(xiàn)在ListView列表中饱溢,那么該item就要顯示出來喧伞,那么你就需要這行代碼了:

<pre class="brush:java;">//你輸入的關(guān)鍵字包含在了某個item中,位置不做考慮绩郎,即可以不是第一個字符
valueText.indexOf(prefixString.toString()) != -1</pre>

這樣就完成了一個EditText + ListView實現(xiàn)搜索的功能潘鲫。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市肋杖,隨后出現(xiàn)的幾起案子溉仑,更是在濱河造成了極大的恐慌,老刑警劉巖状植,帶你破解...
    沈念sama閱讀 206,378評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件浊竟,死亡現(xiàn)場離奇詭異,居然都是意外死亡津畸,警方通過查閱死者的電腦和手機(jī)振定,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,356評論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來肉拓,“玉大人后频,你說我怎么就攤上這事∨荆” “怎么了卑惜?”我有些...
    開封第一講書人閱讀 152,702評論 0 342
  • 文/不壞的土叔 我叫張陵膏执,是天一觀的道長。 經(jīng)常有香客問我残揉,道長胧后,這世上最難降的妖魔是什么芋浮? 我笑而不...
    開封第一講書人閱讀 55,259評論 1 279
  • 正文 為了忘掉前任抱环,我火速辦了婚禮,結(jié)果婚禮上纸巷,老公的妹妹穿的比我還像新娘镇草。我一直安慰自己,他們只是感情好瘤旨,可當(dāng)我...
    茶點故事閱讀 64,263評論 5 371
  • 文/花漫 我一把揭開白布梯啤。 她就那樣靜靜地躺著,像睡著了一般存哲。 火紅的嫁衣襯著肌膚如雪因宇。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,036評論 1 285
  • 那天祟偷,我揣著相機(jī)與錄音察滑,去河邊找鬼。 笑死修肠,一個胖子當(dāng)著我的面吹牛贺辰,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播嵌施,決...
    沈念sama閱讀 38,349評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼饲化,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了吗伤?” 一聲冷哼從身側(cè)響起吃靠,我...
    開封第一講書人閱讀 36,979評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎足淆,沒想到半個月后巢块,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,469評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡缸浦,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,938評論 2 323
  • 正文 我和宋清朗相戀三年夕冲,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片裂逐。...
    茶點故事閱讀 38,059評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡歹鱼,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出卜高,到底是詐尸還是另有隱情弥姻,我是刑警寧澤南片,帶...
    沈念sama閱讀 33,703評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站庭敦,受9級特大地震影響疼进,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜秧廉,卻給世界環(huán)境...
    茶點故事閱讀 39,257評論 3 307
  • 文/蒙蒙 一伞广、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧疼电,春花似錦嚼锄、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,262評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至修陡,卻和暖如春沧侥,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背魄鸦。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工宴杀, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人号杏。 一個月前我還...
    沈念sama閱讀 45,501評論 2 354
  • 正文 我出身青樓婴氮,卻偏偏與公主長得像,于是被迫代替她去往敵國和親盾致。 傳聞我的和親對象是個殘疾皇子主经,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,792評論 2 345

推薦閱讀更多精彩內(nèi)容

  • Spring Cloud為開發(fā)人員提供了快速構(gòu)建分布式系統(tǒng)中一些常見模式的工具(例如配置管理,服務(wù)發(fā)現(xiàn)庭惜,斷路器罩驻,智...
    卡卡羅2017閱讀 134,599評論 18 139
  • 背景 一年多以前我在知乎上答了有關(guān)LeetCode的問題, 分享了一些自己做題目的經(jīng)驗。 張土汪:刷leetcod...
    土汪閱讀 12,724評論 0 33
  • 1. Java基礎(chǔ)部分 基礎(chǔ)部分的順序:基本語法护赊,類相關(guān)的語法惠遏,內(nèi)部類的語法,繼承相關(guān)的語法骏啰,異常的語法节吮,線程的語...
    子非魚_t_閱讀 31,581評論 18 399
  • 去阿爾比斯山脈的行程實屬偶然。 10月28號判耕,看朋友圈才知道當(dāng)天是農(nóng)歷的九月九透绩,想起去年的九月九我們?nèi)テ咸蜒赖淖罡?..
    羅冬梅Faustina閱讀 574評論 5 7
  • 綿長的公路上 有數(shù)不清的云 像公主、王子 城堡和白馬 我們就要走到 樹和樹的身邊 你給孩子們說 樹的背后 就是家 ...
    文藝病閱讀 135評論 0 2