如何在数组列表中将图像组显示为字符串

发布于 2024-10-20 18:03:02 字数 295 浏览 2 评论 0原文

嗨,我是 Android 新手 我通过 arraylist 中的 json 从服务器获取了图像 url 响应 我得到了 arraylist 字符串并将其存储在 arraylist 中

这是我的编码:

ArrayList al = new ArrayList();

al.add(message.getParameters());

在这里,我将响应字符串添加到数组中,该响应是图像字符串。 图像字符串是 url。

在这里我想在模拟器中显示图像

我怎样才能完成这个请告诉我

hi i am new to android
i got the image url responce from server via json in arraylist i got the arraylist string and i stored it in arraylist

this is my coding:

ArrayList al = new ArrayList();

al.add(message.getParameters());

here i add the responce string into array this responce is image string.
the image string is url.

here i want to display the images in emulator

how can i accomplish this please tell me

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

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

发布评论

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

评论(1

極樂鬼 2024-10-27 18:03:02

我会给你一个关于这个的想法。在布局中设置一个 ImageView,然后从 ArrayList 中存储的 URL 加载 ImageView 中的图像。

I will give you an idea about this. Set an ImageView in your layout, then load the image in ImageView from the URL stored in ArrayList.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文