3

我创建了一个特定的 Listview,它存在于以下元素中,以创建一个可滚动列表,其中每一行包含左侧的图像和右侧的一些文本。我用于列表视图的 xml 如下所示:

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent" 
android:layout_height="fill_parent"
android:background="#C8C8C8"
>
<TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"/>
<ListView
    android:id="@android:id/list"
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"
    android:drawSelectorOnTop="false"
    android:divider="#C8C8C8"
    android:background="#C8C8C8"/>

对于listview的行,我使用的xml代码如下:

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:background="@drawable/bg_row"
>
    <ImageView
        android:layout_width="wrap_content"
        android:paddingLeft="10px"
        android:paddingRight="15px"
        android:paddingTop="5px"
        android:paddingBottom="5px"
        android:layout_height="wrap_content"
        android:src="@drawable/bg_image"
    />
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingTop="5px"
        android:paddingBottom="5px"
        android:textSize="16sp"
        android:textColor="#000000"
        android:layout_gravity="center"
        android:maxHeight="50px"/>
</LinearLayout>

只要屏幕静态显示(如没有移动),它就会正确显示,但是当我开始滚动列表时,行项目的背景(代码中显示的“图标”)将是正确显示,但“根”布局的背景将变为完全黑色......当滚动停止时,大多数情况下,背景会恢复它的颜色......当我测试时,我还在那个根中添加了一个 TextView -具有相同背景的元素,当列表滚动时,这个元素会保留它的颜色......知道为什么会发生这种情况,以及如何解决这个问题?

4

2 回答 2

0

您需要将 ListView 的缓存颜色设置为与 ListView 的颜色相同:

<ListView
    android:id="@android:id/list"
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"
    android:drawSelectorOnTop="false"
    android:divider="#C8C8C8"
    android:background="#C8C8C8"
    android:cacheColorHint="#C8C8C8"  />

旁注:如果你想让你的分隔线不可见,你也可以这样做:

android:divider="@null"
于 2012-11-22T11:07:00.087 回答
0

在 ListView 标签上添加一个属性

android:cacheColorHint="#00000000" // setting as a transparent color
于 2012-11-22T11:03:46.217 回答