ListView.setBackgroundDrawable(null)后不显示ListView滚动条
我有一个带有背景的 listView,滚动条按需要显示。 但是当我用 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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
设置ListView.setBackgroundColor(0x00000000)而不是ListView.setBackgroundDrawable(null)。
Set ListView.setBackgroundColor(0x00000000) instead of ListView.setBackgroundDrawable(null).
要使其再次可见,请再次使用 setBackgroundDrawable() 而不传递 null。
To make it visible again, use setBackgroundDrawable() again not passing null.