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"
/>