AutoCompleteTextView(自动提示的文本编辑控件)
------>父类:EditText
------>属性:popupBackground下拉菜单的背景,dropDownWidth下拉菜单的宽度,completionThreshold:指定用户至少输入几个字符才会显示提示,textCursorDrawable="@null"设置光标颜色与文本颜色一致
------->使用方法:1.创建数据源,比如数组或集合
2.使用ArrayAdapter数组适配器设置下拉菜单布局及数据源
3.使用setAdapter()方法将ArrayAdapter对象加载到AutoCompleteTextView
4.使用addTextChangedListener(TextWatcher watcher)方法设置控件的内容改变事件监听器
原文:http://www.cnblogs.com/aWay01/p/5240431.html