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>

谢谢。

最佳答案

尝试将 XML 属性添加到您的 AutoCompleteTextView:

android:popupBackground="color_what_you_want_to_background"

在你的情况下类似
android:popupBackground="@android:color/black"

希望对你有帮助

关于Android:ListView 上的 AutoCompleteTextView 上边距,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14496113/

10-12 06:29