AutoCompleteTextView的应用

学习了一下在Android之下AutoCompleteTextView的应用,记录下来以备查用。

 

AutoCompleteTextView actv = (AutoCompleteTextView)findViewById(R.id.actv);
String[] autoStr = {"aa","bb","abc","bdef","efgh"};


ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,android.R.layout.simple_dropdown_item_1line,autoStrs);


actv.setAdapter(adapter);

你可能感兴趣的:(android,String,dropdown)