Android 笔记 之 AutoCompleteTextView

AutoCompleteTextView

自动完成表单

 

一个N简单的例子:

AutoCompleteTextView actv = (AutoCompleteTextView)findViewById(R.id.actv1); actv.setAdapter(new ArrayAdapter<String>( this, android.R.layout.simple_dropdown_item_1line,new String[]{"abc","bcd","abcd","abd"}));


posted @ 2011-01-14 12:29  mylitboy  阅读(113)  评论(0)    收藏  举报