Android ListView.addHeaderView添加ImageView时闪烁
我通过 addHeaderView(image, null, false) 将 ImageView 添加到 ListView 中,因此它不可选,但是当我滚动列表时,imageview 闪烁(在图像和黑色背景之间),我可以做些什么来解决这个问题?
谢谢!
I added an ImageView to a ListView via addHeaderView(image, null, false), so it is not selectable, but when I scroll the list, the imageview flickers(between image and black background), is there anything I can do to solve this?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定它是否能解决您的问题,但您可以尝试在 ListView 上调用
setCacheColorHint(0)
。您所描述的内容听起来像是本文中介绍的内容...ListView 背景I'm not sure if it will solve your problem but you could try calling
setCacheColorHint(0)
on your ListView. What you describe sounds like what is covered in this article...ListView Backgrounds