0

http://developer.android.com/resources/tutorials/views/hello-autocomplete.html またはでコードを確認してください

<?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="fill_parent"
    android:padding="10dp"
    android:textSize="16sp"
    android:textColor="#000">
</TextView>

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="horizontal"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"
    android:padding="5dp">
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Country" />
    <AutoCompleteTextView android:id="@+id/autocomplete_country"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="5dp"/>
</LinearLayout>

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    AutoCompleteTextView textView = (AutoCompleteTextView) findViewById(R.id.autocomplete_country);
    ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, R.layout.list_item, COUNTRIES);
    textView.setAdapter(adapter);
}

そして、静的な最終的なString[]COUNTRIESがすべての国で埋められます。

私の質問は、なぜlist_item.xmlを使用しているのかということです。実際には、list_item.xmlはコードの最初の部分を含み、2番目のxmlコードはmain.xml用であり、次にアクティビティ用のjavaコードです。

4

1 に答える 1

2

オートコンプリートテキストビューの結果がリスト形式で表示されます。リスト内の各項目にはレイアウトが必要です。R.layout.list_item は、リスト内の各アイテムのレイアウトです

于 2012-04-06T10:00:43.537 に答える