When you scroll down/up, the listview will flicker, blink, or turns black.
This is how to remove:
Before:
<ListView
android:id="@+id/listview"android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/translucent_heavyGray"
/>
After:
<ListView
android:id="@+id/listview"android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/translucent_heavyGray"
android:cacheColorHint="#00000000"
/>
android:cacheColorHint="#00000000" will solve the problem.
No comments:
Post a Comment