我定义了一个自定义主题,我在窗口背景上绘制了一个黑色渐变。我的ListView背景设置为透明,但每当我滚动时,背景颜色变为黑色,然后滚动停止后,返回渐变颜色。这是为什么?
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Base application theme is the default theme. -->
<style name="Theme" parent="android:Theme">
</style>
<!-- Variation on our application theme that has a translucent
background. -->
<style name="Theme.DarkGradient">
<item name="android:windowBackground">@drawable/dark_gradient</item>
</style>
</resources>
答案 0 :(得分:11)
您的问题在这里得到解答:http://developer.android.com/resources/articles/listview-backgrounds.html
您只需设置cacheColorHint
即可解决问题。 : - )
答案 1 :(得分:1)
在你的xml listView中设置cacheColorHint =“#00000000”它是一个透明的颜色
<ListView android:id="@id/android:list" android:layout_width="320dp"
android:layout_height="fill_parent" android:layout_centerHorizontal="true"
android:divider="@color/whitetxtcolor"
android:layout_weight="2" android:drawSelectorOnTop="false"
android:layout_below="@id/new_layout"
android:cacheColorHint="#000000"
></ListView>
或U也可以这样做 this.getListView.setCacheColorHint(0);