Android实现动态自动匹配输入内容功能
程序员文章站
2023-12-11 20:58:46
什么是动态自动匹配输入内容呢?举个例子,当我们在百度等搜索引擎的输入框中输入想要搜索的关键词,输入框下面会提示很多相关联的热门搜索项,效果图如下
那在安卓中如何实现这...
什么是动态自动匹配输入内容呢?举个例子,当我们在百度等搜索引擎的输入框中输入想要搜索的关键词,输入框下面会提示很多相关联的热门搜索项,效果图如下
那在安卓中如何实现这种效果呢?在这里给大家推荐两个android的控件:
autocompletetextview
multiautocompletetextview
一、autocompletetextview
独特属性:android:completionthreshold=”2”—–设置输入多少字符时自动匹配
首先,我们先在res文件夹(我用的是androidstudio)下的active_main.xml下面加入autocompletetextview控件,并设置好大小宽高等其他一些基础属性
<?xml version="1.0" encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.example.admin.demo.mainactivity"> <autocompletetextview android:completionthreshold="2" android:id="@+id/autocompletetextview1" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="请输入你要搜索的关键词" /> </linearlayout>
接着,我们到java目录下的mainactivity.java加入相应的代码:
package com.example.admin.demo; import android.support.v7.app.appcompatactivity; import android.os.bundle; import android.widget.arrayadapter; import android.widget.autocompletetextview; public class mainactivity extends appcompatactivity { private autocompletetextview actextview; //建立一个数组,保存我们想要提示的文本内容 private string[] res = {"ab1","ab2","ab3"}; @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_main); //初始化控件,返回类型view强制转换成autocompletetextview actextview = (autocompletetextview) findviewbyid(r.id.autocompletetextview1); //添加适配器,并初始化数据源,用来匹配文本框输入的内容 arrayadapter<string> adapter = new arrayadapter<string>(this,android.r.layout.simple_list_item_1,res); //将适配器与当前控件绑定 actextview.setadapter(adapter); } }
这样代码就完成了,因为我们在autocompletetextview控件中设置了android:completionthreshold=”2”,即当我们输入到第2个字符时开始进行匹配,让我们将当前应用程序布置到模拟器里面看一下效果:
二、multiautocompletetextview
有时候我们在文本框中需要进行多次输入,比如我们在发短信或者写邮件的时候,往往需要多选联系人:
在这种时候,我们就可以选择multiautocompletetextview:
- 支持选择多个值(在多次输入的情况下),分别用分隔符分开,并且在每个值选中的时候再次输入值时会自动去匹配
- 独特属性:android:completionthreshold=”2”—–设置输入多少字符时自动匹配
- 设置分隔符:mactextview.settokenizer(newmultiautocompletetextview.commatokenizer());
这个控件的使用方法跟autocompletetextview大体上还是差不多的,只是多了设置分隔符这一步
activity_main.xml:
<?xml version="1.0" encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.example.admin.demo.mainactivity"> <multiautocompletetextview android:completionthreshold="2" android:id="@+id/multiautocompletetextview" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="请输入收件人" /> </linearlayout>
mainactivity.java:
package com.example.admin.demo; import android.support.v7.app.appcompatactivity; import android.os.bundle; import android.widget.arrayadapter; import android.widget.multiautocompletetextview; public class mainactivity extends appcompatactivity { private multiautocompletetextview mactextview; //建立一个数组,保存我们想要提示的文本内容 private string[] res = {"ab1","ab2","ab3","cd1","cd2","cd3"}; @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_main); //初始化控件,返回类型view强制转换成autocompletetextview mactextview = (multiautocompletetextview) findviewbyid(r.id.multiautocompletetextview); //添加适配器,并初始化数据源,用来匹配文本框输入的内容 arrayadapter<string> adapter = new arrayadapter<string>(this,android.r.layout.simple_list_item_1,res); //将适配器与当前控件绑定 mactextview.setadapter(adapter); //设置以逗号为分隔符为结束的符号 mactextview.settokenizer(new multiautocompletetextview.commatokenizer()); } }
运行结果:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读
-
Android实现动态自动匹配输入内容功能
-
Android实现自动匹配关键字并且标红功能
-
Android编程实现输入框动态自动提示功能
-
Android实现动态自动匹配输入内容功能
-
Android实现自动匹配关键字并且标红功能
-
Android实现蓝牙的搜索,配对(不需要输入PIN,自动匹配),连接,通信
-
Android实现动态显示或隐藏密码输入框的内容
-
Android实现蓝牙的搜索,配对(不需要输入PIN,自动匹配),连接,通信
-
Android实现动态显示或隐藏密码输入框的内容
-
Android AutoCompleteTextView和MultiAutocompleteTextView实现动态自动匹配输入的内容