2015年4月8日 星期三

[Android]利用Bundle傳送Bitmap

傳送:
Intent intent = new Intent();
intent.setClass(A.this, B.class);
Bundle bundle = new Bundle();
bundle.putParcelable("bitmap", bitmap);
intent.putExtras( bundle);
startActivity(intent);

接收:
Bundle bundle = getIntent.getExtras();
Bitmap bitmap = bundle.getParcelable("bitmap");
bitmap.setImageBitmap(bitmap);