Guillaume
Guillaume

Reputation: 41

ListView scrollbar not displayed after ListView.setBackgroundDrawable(null)

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

Answers (2)

Guillaume
Guillaume

Reputation: 41

Set ListView.setBackgroundColor(0x00000000) instead of ListView.setBackgroundDrawable(null).

Upvotes: 3

Jack
Jack

Reputation: 9242

To make it visible again, use setBackgroundDrawable() again not passing null.

Upvotes: 0

Related Questions