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
的drawable<?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>
感谢。
答案 0 :(得分:0)
尝试将XML属性添加到AutoCompleteTextView:
android:popupBackground="color_what_you_want_to_background"
在你的情况下像
android:popupBackground="@android:color/black"
希望,它可以帮助你