AutoCompleteTextView 在弹出窗口中显示一个 ListView 用于自动完成。附件是详细说明问题的图像。就在第一项之前,几乎没有白边。此边距仅在列表顶部可见。此问题在运行 2.3 的设备上可见,而在 4.x 上此问题不可见。
有人可以指出这种行为的原因以及解决方法。
包含 AutoCompleteTextview 的布局代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:layout_height="wrap_content"
android:layout_width="match_parent">
<AutoCompleteTextView
android:id="@+id/menu_search_field"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/textfield_searchview_holo_light"
android:clickable="true"
android:hint="@string/search_hint"
android:imeOptions="actionSearch"
android:lines="1"
android:singleLine="true"
android:textColor="@color/header_text_color"
android:textColorHint="@color/header_hint_text_color"
android:textSize="14dip"/>
</LinearLayout>
在 Listview 中定义项目的布局。
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:textSize="16sp"
android:textColor="@android:color/white"
android:background="@android:color/black"
android:ellipsize="end"
>
</TextView>
以及 textfield_searchview_holo_light 的可绘制对象
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_focused="true" android:drawable="@drawable/textfield_search_default_holo_dark" />
<item android:drawable="@drawable/textfield_search_default_holo_dark" />
</selector>
谢谢。