Android Gallery与Gridview&缩略图

时间:2012-05-20 19:13:49

标签: android gridview three20 android-gallery

对于我的应用程序,我需要一个带有远程图像的画廊(Gridview)(原始和拇指的URL被JSON文件解析),它显示缩略图,并在点击时加载原始大小的图像(异步将是最好的...) 我已经在http://fukyo-it.blogspot.com/2010/08/iphone-sdk-creating-photo-gallery-with.html上看到了iPhone的这个问题,但这在Android上如何轻松实现?

非常感谢您的帮助!

2 个答案:

答案 0 :(得分:6)

这看起来像是满足我需求的完美库:https://github.com/nostra13/Android-Universal-Image-Loader

答案 1 :(得分:0)

我没有做任何iPhone开发,但这在Android上应该不会太难。我会按照这里的教程http://developer.android.com/resources/tutorials/views/hello-gridview.html进行操作。我使用Gallery控件做了类似的事情。我遇到的主要问题是性能和内存,因此请确保在后台线程上下载图像,并限制在内存中保留的图像数量(如果它将是一大组图像)。