我完全按照AutoCompleteTextView tutorial。涉及软键盘时,布局会出错。
点击下拉列表(选择或滚动)后,布局中断:
我在AutoCompleteTextView上尝试了各种属性组合,但似乎都没有。我也尝试过设置windowSoftInputMode。下拉列表总是在文本框上方弹出,并永远保留在那里。
在横向方向上,布局正常:
标准自动完成是否无用?我应该使用不同的/写我自己的吗?
我使用的代码如下:
<?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);
}