从json url加载图像并在android中的gridview中显示

时间:2014-02-04 11:07:33

标签: android json gridview android-imageview

我创建了一个应用程序。

因为我从JSON字符串中获取了一些网址,我想从这些网址加载图片并在grid-view中显示。

我的代码是:

ListAdapter adapter = new SimpleAdapter(Screen_Shot.this, screenshotList,
                    R.layout.screen_shot_item, new String[] { "url", "time" }, 
                    new int[] { R.id.imageView_screen_shot, R.id.textView_screen_shot});
            gridView.setAdapter(adapter);

问题是它只显示捕获图像的时间而不显示图像。以下是我的截图。

The problem is it shows only time of image captured but not image.

1 个答案:

答案 0 :(得分:2)

使用此library从url one image动态加载。

示例:

  

ImageView img =(ImageView)findViewById(R.id.yourImage);     Picasso.with(上下文).load( “YouURL.com”)代入(IMG);