我是如何从JSON对象中提取图像并通过意图传递给另一个对象的任何想法?到目前为止,这是最接近我收到的接收活动中的字节数组,但BitmapFactory.decodeByteArray返回null。
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
DetailFragment fragB = (DetailFragment) getSupportFragmentManager()
.findFragmentById(R.id.detail_frag);
Row row = (Row)parent.getItemAtPosition(position);
JsonNode item = row.getValueAsNode();
intent.putExtra("item", item.toString() );
JsonNode attachmentText = item.get("_attachments");
//hidden code which gets the imgId from the JsonNode
byte[] byteArray = attachmentText.get(imgId).toString().getBytes();
intent.putExtra("picture", byteArray);
startActivity(intent);
在接收片段中:
byte[] byteArray = getArguments().getByteArray("picture");
Bitmap bmp = BitmapFactory.decodeByteArray(byteArray, 0, byteArray.length);
ImageView image = (ImageView) view.findViewById(R.id.imgDetail);
image.setImageBitmap(bmp);
bmp返回null
更新
我搞砸了,JSON JsonNode attachmentText = item.get("_attachments");
没有返回图像,而是返回图像元数据。
我尝试过不同的路径,将ImageView从视图布局转换为字节数组,然后将其传递给活动,但这也不起作用,bmp返回null:
ImageView image = (ImageView) view.findViewById(R.id.img);
Bitmap bmp = BitmapFactory.decodeResource(getResources(), image.getId());
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bmp.compress(Bitmap.CompressFormat.PNG, 100, stream);
byte[] byteArray = stream.toByteArray();
//pass Byte Array to intent
intent.putExtra("picture", byteArray);
对于我已经检索过的图像,还有唯一的事情是再次查询数据库吗?目前它们位于listView中,我试图让所选列表项图像显示在附加到新活动的详细视图中。
这是最初检索列表视图图像的工作代码:
AttachmentInputStream readAttachment = db.getAttachment(row.getId(), imgId);
Bitmap bitmap = BitmapFactory.decodeStream(readAttachment);
img.setImageBitmap(bitmap);
答案 0 :(得分:0)
一旦你知道你有图像JSON字符串......
private Bitmap getBitmapFromString(String jsonString) {
byte[] decodedString = Base64.decode(stringPicture, Base64.DEFAULT);
Bitmap decodedByte = BitmapFactory.decodeByteArray(decodedString, 0, decodedString.length);
return decodedByte;
}