溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

ListView與RecyclerView列表項(xiàng)搜索高亮

發(fā)布時(shí)間:2024-08-15 15:13:32 來源:億速云 閱讀:85 作者:小樊 欄目:移動(dòng)開發(fā)

要實(shí)現(xiàn)ListView或RecyclerView列表項(xiàng)搜索高亮效果,可以通過以下步驟實(shí)現(xiàn):

  1. 創(chuàng)建一個(gè)用于顯示列表項(xiàng)的布局文件,其中包含一個(gè)TextView用于顯示列表項(xiàng)的內(nèi)容。

  2. 創(chuàng)建一個(gè)自定義Adapter類,繼承自BaseAdapter(對(duì)應(yīng)ListView)或RecyclerView.Adapter(對(duì)應(yīng)RecyclerView),并在getView方法中設(shè)置TextView的文本內(nèi)容。

  3. 在Adapter類中添加一個(gè)方法用于設(shè)置搜索關(guān)鍵字,并在getView方法中根據(jù)搜索關(guān)鍵字對(duì)TextView的文本進(jìn)行高亮處理。

  4. 在Activity或Fragment中實(shí)現(xiàn)搜索功能,獲取用戶輸入的搜索關(guān)鍵字,并調(diào)用Adapter的設(shè)置搜索關(guān)鍵字的方法,并刷新列表。

下面是一個(gè)簡(jiǎn)單的示例代碼:

public class MyAdapter extends BaseAdapter {

    private Context mContext;
    private List<String> mData;
    private String mSearchKeyword;

    public MyAdapter(Context context, List<String> data) {
        mContext = context;
        mData = data;
    }

    public void setSearchKeyword(String keyword) {
        mSearchKeyword = keyword;
    }

    @Override
    public int getCount() {
        return mData.size();
    }

    @Override
    public Object getItem(int position) {
        return mData.get(position);
    }

    @Override
    public long getItemId(int position) {
        return position;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        if (convertView == null) {
            convertView = LayoutInflater.from(mContext).inflate(R.layout.list_item, parent, false);
        }

        TextView textView = convertView.findViewById(R.id.text_view);
        String item = mData.get(position);

        if (mSearchKeyword != null && !mSearchKeyword.isEmpty()) {
            SpannableString spannableString = new SpannableString(item);
            int startIndex = item.toLowerCase().indexOf(mSearchKeyword.toLowerCase());
            int endIndex = startIndex + mSearchKeyword.length();
            if (startIndex >= 0) {
                spannableString.setSpan(new ForegroundColorSpan(Color.RED), startIndex, endIndex, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
            }
            textView.setText(spannableString);
        } else {
            textView.setText(item);
        }

        return convertView;
    }
}

在Activity或Fragment中,可以使用EditText監(jiān)聽用戶輸入的搜索關(guān)鍵字,并調(diào)用Adapter的setSearchKeyword方法,然后通過調(diào)用notifyDataSetChanged方法刷新列表項(xiàng):

EditText searchEditText = findViewById(R.id.search_edit_text);
ListView listView = findViewById(R.id.list_view);
MyAdapter adapter = new MyAdapter(this, dataList);
listView.setAdapter(adapter);

searchEditText.addTextChangedListener(new TextWatcher() {
    @Override
    public void beforeTextChanged(CharSequence s, int start, int count, int after) {
    }

    @Override
    public void onTextChanged(CharSequence s, int start, int before, int count) {
        adapter.setSearchKeyword(s.toString());
        adapter.notifyDataSetChanged();
    }

    @Override
    public void afterTextChanged(Editable s) {
    }
});

以上是一個(gè)簡(jiǎn)單的實(shí)現(xiàn)方式,實(shí)際應(yīng)用中可以根據(jù)具體需求和性能要求進(jìn)一步優(yōu)化。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI