滚动时Android背景ListView变黑

这个问题在这里已经有了答案:

  • 当滚动11个答案时,背景ListView变黑

  • 在ListView标签上添加一个属性

    android:cacheColorHint="#00000000" // setting as a transparent color
    

    您需要将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"
    
    链接地址: http://www.djcxy.com/p/24189.html

    上一篇: Android Background ListView becomes black when scrolling

    下一篇: Getting errors when I am trying to run the hellogridview