如何将json图像显示为listView

时间:2012-02-14 18:10:55

标签: android json image

伙计我正在尝试在我的应用程序中显示json图像,我找不到任何正在做这件事之王的教程,我将图像作为字符串但将其转换为位图是我的主要问题。 这是我到目前为止所做的。

            URL url = new URL(
                  "myUrl" + c.getString("photoThumbnailUrl"));

            Bitmap bitmap = BitmapFactory.decodeStream(url.openStream());
            map.put(TAG_PHOTOS, photoThumbnailUrl);
            // System.out.println(photoThumbnailUrl);
            map.put(photoThumbnailUrl, bitmap);

将图像绑定到适配器

          SimpleAdapter adapter = new SimpleAdapter(this, List, R.layout.list,
            new String[] { TAG_PHOTOS,TAG_IDENTIFIER }, new int[] {    
            R.id.image,R.id.identifier });
            adapter.setViewBinder(new MyViewBinder());
            setListAdapter(adapter);

这是我的logCat

          Error parsing data org.json.JSONException: No value for photoThumbnailUrl
          W/System.err(592): org.json.JSONException: No value for photoThumbnailUrl
          W/System.err(592):    at org.json.JSONObject.get(JSONObject.java:354)

谢谢

1 个答案:

答案 0 :(得分:0)

你确定你的json文件有属性照片ThumbnailUrl?

你能告诉我们网址请求中的json文件吗?