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 包含代码的第一部分,第二个 xml 代码用于 main.xml,然后是用于活动的 java 代码

4

1 回答 1

2

自动完成文本视图中的结果以列表形式显示。列表中的每个项目都需要一个布局。R.layout.list_item 是列表中每个项目的布局

于 2012-04-06T10:00:43.537 回答