Android实现自动文本框提示功能

Android实现自动文本框提示功能,第1张

概述本文实例为大家分享了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实现自动文本框提示功能全部内容,希望文章能够帮你解决Android实现自动文本框提示功能所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1144066.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存