Android中AutoCompleteTextView控件的使用

1.acrtivity_main.xml布局文件:




    



2.定义一个字符串数组:

String books[] = new String[] {"linjunjie","lilianjie","chenglong","wujing","wangbaoqiang","huojianhua","zhangjie","zhangyue","bigbang"};


3.在OnCreate方法中:

        setContentView(R.layout.activity_main);
        AutoCompleteTextView auto = (AutoCompleteTextView)findViewById(R.id.actv_show);
        ArrayAdapter adapter = new ArrayAdapter(this,android.R.layout.simple_dropdown_item_1line,books);
        auto.setAdapter(adapter);


 
  
为控件添加适配器。

布局文件中:

android:completionThreshold="1"
这个意思是1个字符进行匹配,默认是2个字符匹配。
很简单的一个控件。

你可能感兴趣的:(Android区)