Bitmap r = imagelist[args.Position].Data;
byte[] arr = getByteFromBitmap(r);
var activity2 = new Intent(this, typeof(FullScreenImageViewActivity));
activity2.PutExtra("FullImage", arr);
StartActivity(activity2);
我得到correkt字节[]并把它放在意图。但它永远不会把我带到其他活动,所以下面的代码不会被触发。传递值从一个活动到另一个失败
byte[] b = Intent.GetByteArrayExtra("FullImage");
Bitmap bitmap = BitmapFactory.DecodeByteArray(b, 0, b.Length);
imageView.SetImageBitmap(bitmap);
请检查: HTTP:// stackoverflow.com/questions/2459524/how-can-i-pass-a-bitmap-object-from-one-activity-to-another – user3872416
我尝试过,但不知何故它甚至不启动其他活动 –