延迟加载android ExpandableListView
我正在使用 Fedor 的适配器和图像加载器将图像延迟加载到可扩展列表视图中。 (延迟加载ListView 中的图像)它工作得很好,但有一个问题。仅当图像视图(在列表视图行中)离开屏幕然后返回(通过滚动或折叠和展开列表视图组)时,才会显示图像。如果有帮助,我们将不胜感激。
I'm using Fedor's adapter and imageloader to lazy load images into an expandablelistview. (Lazy load of images in ListView) It works perfectly but with one problem. An image will only display when the imageview (in the listview row) goes off screen and then comes back on (via scrolling or collapsing and expanding the listview group.) Help would be much appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
分配 Drawable 或 Bitmap 后,尝试在 ImageView 上调用
invalidate()
,或在适配器上调用notifyDataSetChanged()
。Try calling
invalidate()
on the ImageView, ornotifyDataSetChanged()
on the adapter, after assigning the Drawable or Bitmap.