每当我滚动时ListView重绘背景颜色

时间:2010-09-23 19:54:07

标签: android listview themes

我定义了一个自定义主题,我在窗口背景上绘制了一个黑色渐变。我的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>

2 个答案:

答案 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);