如何在Android中通过URL(json输出)加载ImageView?

时间:2013-05-02 09:28:05

标签: android json image

显示图片的网址。 我已经显示了“文字”内容 使用以下代码

protected void onPostExecute(final Boolean success) {
 if (dialog.isShowing()) {
dialog.dismiss();
 }
 ListAdapter adapter = new SimpleAdapter(context, jsonlist,
 R.layout.list_item, new String[] { ID, TITLE,
  LOGO}, new int[] {
  R.id.flyer_id, R.id.title, R.id.logo
   });
 setListAdapter(adapter);
lv = getListView();   
  }

1 个答案:

答案 0 :(得分:2)

尝试使用延迟加载概念加载图像。在github中提到了一个很好的例子。 试试这个链接 https://github.com/thest1/LazyList