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
我嘗試過,但不知何故它甚至不啓動其他活動 –