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