Android实现自动文本框提示功能
更新时间:2017年10月20日 14:02:48 作者:konekou
这篇文章主要为大家详细介绍了Android实现自动文本框提示功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
本文实例为大家分享了Android实现自动文本框提示的具体代码,供大家参考,具体内容如下
activity_main.xml布局
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <!-- 默认输2个字符才能有提示 completionThreshold表示只输入1个字符后,就有提示 requestFocus表示界面展开时焦点直接在第二个文本框 --> <AutoCompleteTextView android:id="@+id/myTextView01" android:layout_width="match_parent" android:layout_height="wrap_content" android:completionThreshold="1" /> <MultiAutoCompleteTextView android:id="@+id/myTextView02" android:layout_width="match_parent" android:layout_height="wrap_content" android:completionThreshold="1"> <requestFocus /> </MultiAutoCompleteTextView> </LinearLayout>
代码实现
public class MainActivity extends Activity { private AutoCompleteTextView myTextView01; private MultiAutoCompleteTextView myTextView02; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); myTextView01 = (AutoCompleteTextView) findViewById(R.id.myTextView01); myTextView02 = (MultiAutoCompleteTextView) findViewById(R.id.myTextView02); String[] str={"xiaohe","xiaowang","xiaoli","zhanghe","zhangmin","zhaojun","lihe","daming"}; /* * 创建适配器 * 参数一:上下文 * 参数二:提示下位框的样式,不喜欢可以换android.R.layout.* * 参数三:下拉框中备选的内容 */ ArrayAdapter<String> adapter=new ArrayAdapter<String>( this, android.R.layout.simple_dropdown_item_1line, str); //将Adapter设置到AutoCompleteTextView中 myTextView01.setAdapter(adapter); myTextView02.setAdapter(adapter); //以","作为分隔符 myTextView02.setTokenizer(new MultiAutoCompleteTextView.CommaTokenizer()); } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
您可能感兴趣的文章:
- Android自动编辑文本框(AutoCompleteTextView)使用方法详解
- Android AutoCompleteTextView自动提示文本框实例代码
- Android自动文本框输入识别提示功能代码
- Android中EditText和AutoCompleteTextView设置文字选中颜色方法
- Android中AutoCompleteTextView与MultiAutoCompleteTextView的用法
- Android AutoCompleteTextView控件使用实例
- 基于Android中的 AutoCompleteTextView实现自动填充
- 实例讲解Android中的AutoCompleteTextView自动补全组件
- Android AutoCompleteTextView连接数据库自动提示的方法(附demo源码下载)
- Android高级组件AutoCompleteTextView自动完成文本框使用详解
相关文章
Android ActivityManagerService启动流程详解
这篇文章主要介绍了Android ActivityManagerService启动流程,AMS,即ActivityManagerService,是安卓java framework的一个服务,运行在system_server进程。此服务十分重要,因为它管理着安卓的四大组件,是安卓APP开发者最常接触到的一个服务2023-02-02Android checkbox的listView(多选,全选,反选)具体实现方法
由于listview的一些特性,刚开始写这种需求的功能的时候都会碰到一些问题,重点就是存储每个checkbox的状态值,在这里分享出了完美解决方法:2013-06-06android 中viewpager+fragment仿微信底部TAG完美渐变
这篇文章主要介绍了android 中viewpager+fragment仿微信底部TAG完美渐变,需要的朋友可以参考下2017-05-05Android静默安装实现方案 仿360手机助手秒装和智能安装功能
这篇文章主要介绍了Android静默安装实现方案,仿360手机助手秒装和智能安装功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2016-11-11Android中View.post和Handler.post的关系
这篇文章主要介绍了Android中View.post和Handler.post的关系,View.post和Handler.post是Android开发中经常使用到的两个”post“方法,关于两者存在的区别与联系,文章详细分析需要的小伙伴可以参考一下2022-06-06详解Android 基于TCP和UDP协议的Socket通信
这篇文章主要介绍了详解Android 基于TCP和UDP协议的Socket通信,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧2017-11-11
最新评论