解决方案 »

  1.   

    将图片的地址存到数据库,然后
         while(cursor.moveToNext()){
            String   imagePath = cursor.getString("imagepath");     //从数据库得到图片
            
               ImageView image = (ImageView) pageLayout.findViewById(R.id.ImageView01);
               image.setImageBitmap(BitmapFactory.decodeFile(imagePath ));        }
    试一下看这样可不可以,希望能帮到你