Back
Bitmap implements Parcelable, so you could always pass it with the intent:
Intent intent = new Intent(this, NewActivity.class);intent.putExtra("BitmapImage", bitmap);and retrieve it on the other end:Intent intent = getIntent(); Bitmap bitmap = (Bitmap) intent.getParcelableExtra("BitmapImage");
Intent intent = new Intent(this, NewActivity.class);
intent.putExtra("BitmapImage", bitmap);
and retrieve it on the other end:
Intent intent = getIntent();
Bitmap bitmap = (Bitmap) intent.getParcelableExtra("BitmapImage");
31k questions
32.8k answers
501 comments
693 users