在Android应用程序的图像视图中显示图像

时间:2016-07-26 08:56:48

标签: android json

我以这种方式获得了json数据:

{"data":[{"img_name":"abc.jpeg","img_path":"6"}]}  

现在如何在我的Android应用程序的图像视图中显示此图像。请帮我解决。

1 个答案:

答案 0 :(得分:0)

不确定这是否是你想要的。

首先,您需要解析JSON并获取img_pathimg_name。然后,您可以创建图像的URL。 url生成逻辑取决于您的服务器逻辑。

像这样,

JSONObject data = new JSONObject(your_json_data);
String img_path = data.getString("img_path");
String img_name = data.getString("img_name");

String url = "http://xxx.xxx.x.x/" + img_path + "/" + img_name;

使用Picasso之类的图像加载器加载图像。