Hi, I would like to set transparency on my list, I mean some examples of this, but they were all 100% transparent.
like this section: How to make ListView transparent in android?
As Jackie said, setting attributes to view the list will do the job.
android:background="#00000000" android:cacheColorHint="#00000000"
But in my case, I just want to make it half transparent, a kind of alpha-50 and so on. My goal here is that the user could see the background of the interface through listview, but also see the background of my listView with few transactions.
How can i achieve this?
Thanks.
source share