流浪在黑洞

导航

android ListView 滑动时变黑解决方法

只需要为ListView添加cacheColorHint属性,并设置其值为#00000000,例如

 <ListView
    android:id="@+id/contentList"
    android:layout_below="@id/rel"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="10sp"
    android:layout_alignParentBottom="true"

    android:cacheColorHint="#00000000"
 />

posted on 2011-11-30 16:03  Dontey  阅读(444)  评论(0编辑  收藏  举报