Background ListView becomes black when scrolling
you can use like this:
list.setCacheColorHint(Color.TRANSPARENT);
list.requestFocus(0);
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"
/>
Add an attribute on the ListView
Tag
android:cacheColorHint="#00000000" // setting transparent color
For more details check this blog