首页 > 其他分享 >Android自定义搜索框(EditText)的搜索功能实现,过滤ListView

Android自定义搜索框(EditText)的搜索功能实现,过滤ListView

时间:2022-11-28 19:05:50浏览次数:39  
标签:search layout 自定义 int EditText 搜索 new android id


实现自定义搜索框(实际上就是一个EditText):

<RelativeLayout
android:id="@+id/music_search_rl"
android:layout_width="match_parent"
android:layout_height="30dp"
android:layout_margin="5dp"
android:background="@drawable/acm_inputbox"
android:focusableInTouchMode="true" >

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:drawableLeft="@drawable/icon_search"
android:includeFontPadding="false"
android:text="@string/search"
android:textColor="#DFDFDF" />

<EditText
android:id="@+id/music_search_et"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/transparent"
android:hint="@null"
android:singleLine="true" />
</RelativeLayout>

<ListView
android:id="@+id/search_lv"
android:layout_width="match_parent"
android:layout_height="wrap_content" />


acm_inputbox图片:

Android自定义搜索框(EditText)的搜索功能实现,过滤ListView_Android

icon_search图片:

Android自定义搜索框(EditText)的搜索功能实现,过滤ListView_自定义搜索框EditText_02

在相应的Activity类Java代码中,加入如下的功能代码:

//list.setTextFilterEnabled(true);

search_et = (EditText)findViewById(R.id.music_search_et);
search_et.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
// TODO Auto-generated method stub
String aa = s.toString();
Pattern p = Pattern.compile(aa);


//创建一个List集合,List集合的元素是Map
List<Map<String, Object>> listItems = new ArrayList<Map<String, Object>>();
for(int i = 0; i < pmiList.size(); i++) {
PhoneMusicInfo pmi = pmiList.get(i);
String pmiTitle = pmi.getTitle();
Matcher matcher = p.matcher(pmiTitle);

if(matcher.find()) {
Map<String, Object> listItem = new HashMap<String, Object>();
listItem.put("musicTitle", pmi.getTitle());
listItems.add(listItem);
}
}

//创建一个SimpleAdapter,设置新的Adapter,替换原来的Adapter
SimpleAdapter simpleAdapter = new SimpleAdapter(SelectMusic.this, listItems, R.layout.music_item,
new String[] {"musicTitle"}, new int[] {R.id.music_item_tv});

list.setAdapter(simpleAdapter);

/*if(TextUtils.isEmpty(s))
list.clearTextFilter();
else
list.setFilterText(s.toString());*/
}

@Override
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
// TODO Auto-generated method stub

}

@Override
public void afterTextChanged(Editable s) {
// TODO Auto-generated method stub

}
});


标签:search,layout,自定义,int,EditText,搜索,new,android,id
From: https://blog.51cto.com/u_15894233/5893485

相关文章

  • JSP中的自定义标签
    目录​​目录​​​​简介​​​​入门案例​​​​自定义标签功能扩展​​​​传统自定义标签的运行原理​​​传统自定义标签的使用​​​控制JSP页面部分内容执行​​​......
  • MySQL自定义函数
     ⚠不推荐将业务逻辑存储在数据库中.MySQL不仅提供了很多很方便的内置函数,用户还可以自定义函数。不同于MongoDB对Js函数的良好支持,MySQL的自定义函数用起来感觉处处掣......
  • iOS开发之自定义ActionSheet视图
    有时我们需要用到actionSheet来展示,但是但是往往系统的界面显示很丑或者并不符合UI的要求,所以在这里自定义一个,方便以后使用,后续有时间写一下Swift的开发。自定义ActionShee......
  • 自定义UICollectionViewController之后如何设置布局方式
    今天使用了自定义UICollectionViewController,发现了布局问题,所以给初学者讲解一下,当我们自定义了UICollectionViewController就无法设置UICollectionView的布局样式的问题......
  • 自定义中文全文索引
    自定义中文全文索引​​一、中文分词插件​​​​1、分词组件的调整​​​​2、分词测试​​​​二、样例数据准备​​​​三、通过中文全文分词组件创建节点索引​​​​四......
  • 自定义sublime text 2 build system
    IntroductionSublimeText ​​buildsystems​​ canbeconsideredsimplistic,buthighlycustomizable.ThebasicideaisthateachtypeofBuildprofileispow......
  • kooder安装及本地搜索git仓库代码
    kooder安装及本地搜索git仓库代码需求背景:如果需要从Git代码仓库查询某个配置项做批量的更新替换,如果一个一个找不合适且容易遗漏,需要借助第三方工具来模糊查询来实现。1......
  • 企业级自定义表单引擎解决方案(十七)--Job配置执行
    .netcore研发的低代码自定义表单引擎,采用强大的规则引擎将所有的业务串联起来的,和其他低代码平台是有本质的区别的,目标是完全解放繁琐的CRUD工作。常规的业务,在需求以及......
  • egrep -rl "搜索关键字" 目录/* 显示的内容为包含关键字的文件名字
    批量替换多个文件中的字符串:1sed-i 's/oldstring/newstring/g'`grep-rl搜索关键词 目录/*`(-r表示递归查找子目录,-l表示输出匹配的文件名)......
  • 【自定义控件】WrapBeakPanel-自定义代有换行功能的Panel
    自定义代有换行功能的PanelWrapBreakPanel.csusingSystem;usingSystem.Collections.Generic;usingSystem.Text;usingSystem.Windows.Controls;usingSystem.Win......