Android のオートコンプリート テキスト ビューに設定されたアダプタ データが必要です。
質問する
30310 次
2 に答える
13
String の配列を作成するか、任意の関数から取得して String の ArrayAdapter を作成し、アダプタにリストを設定させます。
String[] array={"first","second item" ,"third item"};
AutoCompleteTextView textView;
ArrayAdapter<String> adapter;
textView = (AutoCompleteTextView) findViewById(R.id.et_search);
adapter = new ArrayAdapter<String>(PlayListActivity.this,
android.R.layout.simple_list_item_1, array);
textView.setAdapter(adapter);
于 2014-05-12T07:18:03.073 に答える
5
のプロジェクトを 1 つ作成AutoCompleteTextView
し、コードを必要な場所に貼り付けます -
main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
<AutoCompleteTextView android:id="@+id/myautocomplete"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:completionThreshold="1"
/>
</LinearLayout>
AutoCompleteTextview.java
public class AndroidAutoCompleteTextView extends Activity implements TextWatcher{
AutoCompleteTextView myAutoComplete;
String item[]={
"January", "February", "March", "April",
"May", "June", "July", "August",
"September", "October", "November", "December"
};
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
myAutoComplete = (AutoCompleteTextView)findViewById(R.id.myautocomplete);
myAutoComplete.addTextChangedListener(this);
myAutoComplete.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_dropdown_item_1line, item));
}
@Override
public void afterTextChanged(Editable arg0) {
// TODO Auto-generated method stub
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
// TODO Auto-generated method stub
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
// TODO Auto-generated method stub
}
}
この例を使用してください。そして、彼らがアダプターをどのように設定しているかを理解してAutoComplete TextView
ください。
于 2012-05-16T07:12:54.470 に答える