我创建了一个应用程序。
因为我从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);
问题是它只显示捕获图像的时间而不显示图像。以下是我的截图。
答案 0 :(得分:2)
使用此library从url one image动态加载。
示例:
ImageView img =(ImageView)findViewById(R.id.yourImage); Picasso.with(上下文).load( “YouURL.com”)代入(IMG);