Search This Blog

Friday, 8 July 2011

List Background not Transparent when Scrolling

 If you want a ListView with a transparent background you need to add either:

android:cacheColorHint="#0000"

In the xml-declaration of it, or something like:

ListView v = getListView();
v.setCacheColorHint(0);

No comments:

Post a Comment