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);

發佈了29 篇原創文章 · 獲贊 5 · 訪問量 8萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章