Android:如何使用异步下载 .png 文件并将其设置为 ImageView?
我已经获得了 .png 图像的 URL,需要下载该图像并将其设置为 ImageView 的源。到目前为止我还是个初学者,所以有一些事情我不明白: 1) 文件存放在哪里? 2)如何在java代码中将其设置到ImageView? 3)如何正确重写AsyncTask方法?
预先致谢,将非常感谢任何形式的帮助。
I've got the URL of a .png image, that needs to be downloaded and set as a source of an ImageView. I'm a beginner so far, so there are a few things I don't understand:
1) Where do I store the file?
2) How do I set it to the ImageView in java code?
3) How to correctly override the AsyncTask methods?
Thanks in advance, will highly appreciate any kind of help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定您是否可以从下载中明确构建 png。然而,这是我用来下载图像并将它们显示到 Imageviews 中的方法:
首先,下载图像:
然后,创建一个 BitMap 并将其关联到 Imageview:
就是这样。
编辑
实际上,您可以通过执行以下操作来保存文件:
I'm not sure you can explicity build a png from a download. However, here is what I use to download images and display them into Imageviews :
First, you download the image :
And then, create a BitMap and associate it to the Imageview :
And that's it.
EDIT
Actually, you can save the file by doing this :
您可以从下载中明确构建 png。
100
是您的压缩(PNG 通常是无损的,因此 100%)out
是您要将 png 保存到的文件的 FileOutputStream。You can explicity build a png from a download.
100
is your compression (PNG's are generally lossless so 100%)out
is your FileOutputStream to the file you want to save the png to.