Skip to content

Instantly share code, notes, and snippets.

@xionglun
Created June 11, 2014 18:22
Show Gist options
  • Save xionglun/ed7bc5ff8cb648d7564e to your computer and use it in GitHub Desktop.
Save xionglun/ed7bc5ff8cb648d7564e to your computer and use it in GitHub Desktop.
Android listview transparent

How to make a ListView transparent in Android?

In xml:

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

In java:

  list.setCacheColorHint(Color.TRANSPARENT);

Reference: stackoverflow

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment