Android SimpleAdapter将图像添加到listview

时间:2011-10-26 22:32:37

标签: android android-listview

使用简单的适配器将图像设置为列表视图时遇到了一些问题。我正在使用来自sqlite数据库的ID从sdcard获取图像,所以sqlite语句正在工作,图像在sdcard上,但如果我尝试在listview中设置它们,它会给我一个输出:

resolveUri failed on bad bitmap uri: android.graphics.Bitmap@40566318

在LogCat上。这是我用来做的代码:

    String sqlite2 = "SELECT objectId FROM collectionmedias WHERE collectionId="+collId+" AND mediaType="+fronImage;
             Cursor bg = userDbHelper.executeSQLQuery(sqlite2);
             if (bg.getCount() == 0) {
                 Log.i("", "No Image file");
                 bg.close();
             } else if (bg.getCount() > 0) {
                 for (bg.move(0); bg.moveToNext(); bg.isAfterLast()) {

                    objectId = Integer.parseInt(bg.getString(bg.getColumnIndex("objectId")));
                    Log.i("","objectId : "+objectId);
                     path = Environment.getExternalStorageDirectory()
                             + "/.MyApp/MediaCollection/" + objectId + ".png";
                     Log.v("","path: "+path);

                 }
             }

            BitmapFactory.Options options = new BitmapFactory.Options();
            options.inTempStorage = new byte[2*1024];

            Bitmap ops = BitmapFactory.decodeFile(path, options);



             hm = new HashMap<String, Object>();
                hm.put(IMAGE, ops);
                hm.put(TITLE, text);
                hm.put(CARDS_COUNT, cardsCount +" MyApp");
                items.add(hm);
        }

        final SimpleAdapter adapter = new SimpleAdapter(this, items, R.layout.main_listview,
                new String[]{TITLE, CARDS_COUNT, IMAGE}, new int[]{ R.id.main_name, R.id.main_info, R.id.main_img});
        listView.setAdapter(adapter);

1 个答案:

答案 0 :(得分:2)

我用它修复了它:path = Environment.getExternalStorageDirectory() + "/MyApp/MediaCollection/" + objectId + ".png";