How to make a ListView transparent in Android?

You should use the more verbose

android:background="@android:color/transparent"
android:cacheColorHint="@android:color/transparent"

Updated with Jacky’s response. I originally merely meant to add to his answer, since he was using a plain hex color in the sample.

Leave a Comment