ListView滚动黑屏问题

问题描述:

ListView滚动时,数据项变成黑色

问题解决办法:

通过android:cacheColorHint = "#00000000"将背景设为透明即可

    <ListView
        android:id="@+id/listView"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:divider="#0072E3"
        android:dividerHeight="0.5px"
        android:cacheColorHint = "#00000000" > 
    </ListView>


 

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章