Android自动完成和软键盘

时间:2011-06-25 16:57:54

标签: android android-widget

我完全按照AutoCompleteTextView tutorial。涉及软键盘时,布局会出错。

enter image description here

点击下拉列表(选择或滚动)后,布局中断:

enter image description here

我在AutoCompleteTextView上尝试了各种属性组合,但似乎都没有。我也尝试过设置windowSoftInputMode。下拉列表总是在文本框上方弹出,并永远保留在那里。

在横向方向上,布局正常:

enter image description here

标准自动完成是否无用?我应该使用不同的/写我自己的吗?

我使用的代码如下:

<?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>

MainActivity.java:

@Override
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);
}

1 个答案:

答案 0 :(得分:0)

我没有使用AutoCompleteTextView,而是使用了EditText和ListView,如图所示here