這是我AutoCompleteTextView代碼:定做自動完成文本搜索建議列表
String[] countries = getResources().getStringArray(R.array.countries_array);
final ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,R.layout.item_list ,countries);
textView = (AutoCompleteTextView) dialog.findViewById(R.id.autoCompleteTextView1);
adapter.setNotifyOnChange(true);
textView.setAdapter(adapter);
這是item_list:
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:textSize="16sp"
android:textColor="#000"
android:drawableRight="@drawable/arrow">
,這是輸出:
我想改變這個彈出式的建議框,並且想要在AutoCompleteTextView下面顯示一些建議列表。(類似於這個):(請忽略蘋果設計,它只是關於結果出現的位置)
我怎樣才能做到這一點..Please建議。 謝謝。
你能幫我這個嗎?http://stackoverflow.com/questions/29046302/how-to-implement-autocompletetextview-with-listview – 2015-03-16 09:55:45