如何在数组列表中将图像组显示为字符串
嗨,我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会给你一个关于这个的想法。在布局中设置一个 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.