Background ListView becomes black when scrolling Background ListView becomes black when scrolling android android

Background ListView becomes black when scrolling


Add an attribute on the ListView Tag

android:cacheColorHint="#00000000" // setting transparent color

For more details check this blog


It's very simple just use this line in your layout file :

android:scrollingCache="false"

like this:

<ListView android:layout_width="fill_parent"android:layout_height="fill_parent"android:scrollingCache="false"/>


you can use like this:

list.setCacheColorHint(Color.TRANSPARENT);list.requestFocus(0);