AutoCompleteTextView导致ListView中的项目消失

时间:2012-04-29 17:43:43

标签: android commonsware

我正在做Android教程中添加列表部分的额外学分。我尝试使用ArrayAdapter中包含的项目填充AutoCompleteTextView(ACTV),但如果addr字段中的字符高于阈值限制,则列表不会显示任何项目。这是代码:

public class MyActivity extends Activity
{
List<Restaurant> model = new ArrayList<Restaurant>();
ArrayAdapter<Restaurant> adapter = null;

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    Button save = (Button)findViewById(R.id.save);
    save.setOnClickListener(onSave);

    ListView list = (ListView)findViewById(R.id.restaurants);

    adapter = new ArrayAdapter<Restaurant>(this,
                    android.R.layout.simple_list_item_1,
                    model);
    list.setAdapter(adapter);

    AutoCompleteTextView textView = (AutoCompleteTextView)findViewById(R.id.addr);
    textView.setAdapter(adapter);
}

private View.OnClickListener onSave= new View.OnClickListener(){
    ...
};
}

和XML ......

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="match_parent"
    android:layout_width="match_parent">
<TableLayout
    android:id="@+id/details"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:stretchColumns="1"
    android:shrinkColumns="1"
    android:layout_alignParentBottom="true"
    >
    <TableRow>
        <TextView android:text="Name:"/>
        <EditText android:id="@+id/name"/>
    </TableRow>

    <TableRow>
        <TextView android:text="Address:"/>
        <AutoCompleteTextView android:id="@+id/addr"
                              android:completionThreshold="5"
                />
    </TableRow>
    <TableRow>
        <TextView android:text="Type:"/>
        <RadioGroup android:id="@+id/types">
            <RadioButton android:id="@+id/take_out"
                         android:text="Take Out"
                         android:layout_height="wrap_content"
                         android:layout_width="wrap_content"
                         android:checked="true"
                         />
            <RadioButton android:id="@+id/sit_down"
                         android:text="Sit Down"
                         android:layout_width="wrap_content"
                         android:layout_height="wrap_content"/>
            <RadioButton android:id="@+id/delivery"
                         android:text="Delivery"
                         android:layout_height="wrap_content"
                         android:layout_width="wrap_content"/>
        </RadioGroup>
    </TableRow>
    <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/save"
            android:text="Save"/>
</TableLayout>
<ListView android:id="@+id/restaurants"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:layout_alignParentTop="true"
          android:layout_above="@id/details"/>
</RelativeLayout>

更改completionThreshold会更改在List中的项目消失之前可以输入的字符数。

感谢您的帮助

1 个答案:

答案 0 :(得分:3)

您正尝试对ListViewAutoCompleteTextView使用相同的适配器。这不是一个好主意。请使用单独的适配器。您可能甚至想要一个与AutoCompleteTextView一起使用的适配器的单独布局(例如,android.R.layout.simple_dropdown_item_1line,就像我在this sample project中使用的那样)。