AutoCompleteTextView

Posted aWay01

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AutoCompleteTextView相关的知识,希望对你有一定的参考价值。

AutoCompleteTextView(自动提示的文本编辑控件)

            ------>父类:EditText

            ------>属性:popupBackground下拉菜单的背景,dropDownWidth下拉菜单的宽度,completionThreshold:指定用户至少输入几个字符才会显示提示,textCursorDrawable="@null"设置光标颜色与文本颜色一致

            ------->使用方法:1.创建数据源,比如数组或集合

                    2.使用ArrayAdapter数组适配器设置下拉菜单布局及数据源

                    3.使用setAdapter()方法将ArrayAdapter对象加载到AutoCompleteTextView

                    4.使用addTextChangedListener(TextWatcher watcher)方法设置控件的内容改变事件监听器

以上是关于AutoCompleteTextView的主要内容,如果未能解决你的问题,请参考以下文章