Thursday, January 12, 2012

Android: When scroll the listview, it flickers (How to remove)

You set background image of your listview to either some image or transparent (translucent).
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