Reputation: 41
I have a listView with a background, scrollbar is showing as wanted. But when I rewove the background with ListView.setBackgroundDrawable(null), the scrollbar does not show anymore. Is this the normal behavior ? How to make it visible again ? Thanks
Upvotes: 1
Views: 1001
Reputation: 41
Set ListView.setBackgroundColor(0x00000000) instead of ListView.setBackgroundDrawable(null).
Upvotes: 3
Reputation: 9242
To make it visible again, use setBackgroundDrawable() again not passing null.
Upvotes: 0