自动加载和处理图库
我需要创建一个图像库,它获取远程图像的 JSON 列表并预加载它们,并在我向左或向右滚动时即时处理它们。除了动态加载的图像列表之外,我似乎找不到任何这样的示例。我想要做的是加载下一个(左和右),而上一个在屏幕上,同时转储其他的。
我看到 widget.gallery 但这适合这个还是我应该使用 Canvas
并编写自己的?
I need to make an image gallery that takes a JSON list of remote images and pre-loads them and disposes them on the fly as i scroll left or right. I cannt seem to find any examples of this other than a list of images being loaded on the fly. What I want to do is to load the next ones (left and right) while the previous one is on the screen, dumping the others as I go.
I see widget.gallery but is this suitable for this or should I use a Canvas
and write my own?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看这里。有一个带有延迟加载的
ListView
,这应该会向您展示解决方案。图像的延迟加载在列表视图中
Look at here. There is a
ListView
with lazy loading, this should show you the solution.Lazy load of images in ListView