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);