fresco+fastjson

依赖

compile 'com.facebook.fresco:fresco:1.5.0'
compile 'com.alibaba:fastjson:1.1.46.android'
主页面

String json = response.body().string();
Bean bean = JSONObject.parseObject(json, Bean.class);
data1 = bean.getResult().getData();
适配器

Uri uri = Uri.parse(list.get(position).getThumbnail_pic_s());
holder.image.setImageURI(uri);

你可能感兴趣的:(android-studio)