W / System.err(15366):android.database.CursorIndexOutOfBoundsException:请求索引1,大小为1
byte[] bytes = cur.getBlob(cur.getColumnIndex(imgarr.get(i)));
ByteArrayInputStream input = new ByteArrayInputStream(bytes);
Bitmap bit = BitmapFactory.decodeStream(input);
答案 0 :(得分:0)
您的Cursor只有一行,但您正在尝试访问Cursor的第二行。
添加以下行
cur.moveToFirst()
就在getBlob函数之前