0

我的列表视图有问题,当您在列表视图中向上或向下滚动时,我看到一个白色的透明度,我想消除它

http://subfotos.com/ver/?e24cbda67e3fd394c71afe3c4ca76137o.png

三星 Galaxy Ace 中有应用程序的屏幕

这是列表视图的代码

<ListView
        android:id="@+id/listView3"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_alignParentLeft="true"
        android:layout_alignParentRight="true"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:footerDividersEnabled="false"
        android:headerDividersEnabled="false"
        android:layout_below="@+id/pages_tab_rel" >

    </ListView>
4

3 回答 3

3

android:fadingEdge="none"

在你的<ListView>xml 里面。

于 2013-06-17T11:52:58.833 回答
3

*在列表视图中使用 android:cacheColorHint="@android:color/transparent"

*

于 2013-06-17T11:56:51.067 回答
1

android:cacheColorHint="@color/transparent"

将 cacheColorHint 设置为透明色

于 2013-06-17T11:52:50.767 回答