在 imageView 中显示下载的图像

发布于 2024-10-14 10:31:04 字数 275 浏览 1 评论 0原文

你好:)我正在尝试编写一个Android应用程序,它下载一堆图像,然后将它们显示在图库中。我设法下载了图像(我确实将它们下载到了 data/data/project 目录中 - 不确定这是否正确),但现在我无法访问它们(我尝试使用 imageView 的 setImageURI 方法在我之后显示图像)已经通过 Uri.Builder().appendPath("data/data/project/file.jpg").build() 创建了一个 Uri 实例,但没有效果)。我是 Android 开发新手,因此我们将不胜感激。谢谢!

Hi :) I'm trying to write an android application that downloads a bunch of images and afterwads displays them in a gallery. I managed to download the images (i did download them do the data/data/project directory - not sure if that's right) but now i can't access them (i tried using the setImageURI method of the imageView to display the image after I've created an Uri instance via Uri.Builder().appendPath("data/data/project/file.jpg").build() but it was to no avail). I'm new to android developing so any help will be greatly appreciated. Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ぇ气 2024-10-21 10:31:04

我开始编写一个示例,但认为这是浪费时间,因为网络上充斥着我可以创建的更好的示例。

在较高层次上,您需要执行以下操作:

  1. 获取 1..n 个文件对象
  2. 使用 BitmapFactory 从这些对象加载位图
  3. 将这些解码的位图加载到 ImageView

查看此类资源集的典型机制是适配器模式。正如我提到的,有一个很好的例子这里< /a> 其中还包含 AsyncTask 的使用以及您应该熟悉的一些典型 Android 编程模式。查看该内容,看看您是否还有其他问题。

I started writing up an example, but decided that it was a waste of time since the net is littered with better examples then I could create.

At a high level, you'll need to do this:

  1. Get 1..n File objects
  2. Load Bitmaps from these objects using BitmapFactory
  3. Load these decoded bitmaps into a ImageView

The typical mechanism for viewing a set of resources like this is the Adapter pattern. As I mentioned, there is a good example here which also encompasses the use of AsyncTask and some other patterns typical of Android programming which you should become familiar with. Review that and see if you have further questions.

再可℃爱ぅ一点好了 2024-10-21 10:31:04

尝试:

Uri uri = Uri.parse("file:///data/data/project/file.jpg");
image.setImageURI(uri);

Try:

Uri uri = Uri.parse("file:///data/data/project/file.jpg");
image.setImageURI(uri);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文