博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android自动完成文本框
阅读量:5899 次
发布时间:2019-06-19

本文共 1266 字,大约阅读时间需要 4 分钟。

Android中的AutoCompleteTextView可以实现文本输入框的自动补全功能,和网页上的输入框使用Ajax时有点像,使用这个功能时,需指定一个adapter来设置补全的
<?
xml version="1.0" encoding="utf-8"
?>
<
LinearLayout 
xmlns:android
="http://schemas.android.com/apk/res/android"
    android:orientation
="vertical"
    android:layout_width
="fill_parent"
    android:layout_height
="fill_parent"
    
>
<!--
 定义一个自动完成文本框,指定输入一个字符后进行提示 
-->
<!--
 android:dropDownHorizontalOffse 设置下拉列表的水平偏移  
--> 
<
AutoCompleteTextView  
    
android:id
="@+id/auto"
    android:layout_width
="fill_parent"
 
    android:layout_height
="wrap_content"
 
    android:completionHint
="请选择您最喜欢的歌曲"
    android:dropDownHorizontalOffset
="20dp"
     
    android:completionThreshold
="1"
  
/> 
<!--
 指明当输入多少个字的时候给出响应的提示 
-->
    
</
LinearLayout
>
public 
class AutoCompleteTextViewTest 
extends Activity
{
    
//
定义字符串数组,作为提示的文本
    String[] books = 
new String[]{
        "孙燕姿-hey jude",
        "孙燕姿-the moment",
        "孙燕姿-tonight I feel close to you",
        "孙燕姿-leave me alone"
    };
    @Override
    
public 
void onCreate(Bundle savedInstanceState)
    {
        
super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        
//
创建一个ArrayAdapter,封装数组
        ArrayAdapter<String> aa = 
new ArrayAdapter<String>(
            
this,
            android.R.layout.simple_dropdown_item_1line,
            books);
        AutoCompleteTextView actv = (AutoCompleteTextView)
            findViewById(R.id.auto);
        
//
设置Adapter
        actv.setAdapter(aa);
    }
}
url:

转载地址:http://dhhsx.baihongyu.com/

你可能感兴趣的文章
【案例】RAID卡写策略改变引发的问题
查看>>
[Django学习]如何得到一个App
查看>>
第四十八讲:tapestry 与 淘宝kissy editor编辑器带图片上传
查看>>
Linux/Centos 重置Mysql root用户密码
查看>>
[C语言]unicode与utf-8编码转换(一)
查看>>
linux进程管理及kill命令详解
查看>>
二:Unit 4
查看>>
shell if
查看>>
利用PDO导入导出数据库
查看>>
CentOS 6.5 部署redmine 2.42
查看>>
DDR3
查看>>
分支 统计字数
查看>>
艾级计算机的发展与挑战
查看>>
我的友情链接
查看>>
RocketMQ事务消息实战
查看>>
mysql-mmm-2.2.1安装手册
查看>>
搭建yum源服务器
查看>>
delphi使用ado导出excel
查看>>
linux 命令详解 二十三
查看>>
IT职场人生系列之二:大学生活
查看>>