Drag item when Background Color black
The listivew background will become black When we drag listview item.
If you want to avoid this situation, you must to chanage cacheColorHint
atttibue to #00000000
in listview xml.
like
<ListView android:id="@+id/MyLV"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/bg_list"
android:cacheColorHint="#00000000" />