Android Question How to make a ListView's background opaque (Alpha = 255) [solved]

Didier9

Well-Known Member
Licensed User
Longtime User
I think the title says all.
I know I can do that in the designer, but I prefer to add the listview programmatically for this project.
TIA
 

Didier9

Well-Known Member
Licensed User
Longtime User
I think the title says all.
I know I can do that in the designer, but I prefer to add the listview programmatically for this project.
TIA

OK, I found the answer: use ARGB as in
B4X:
ListView1.Color = Colors.ARGB( 255, 70, 70, 70 )
 
Upvote 0
Top