I want to pass a image as a bitmap from one activity to another. And i want to know whether it is possible to do like that.
Sending Activity
Intent intent = new Intent(getApplicationContext(), BitmapActivity.class);
Bundle b = new Bundle();
b.putParcelable("BITMAP", bitmap);
intent.putExtras(b);
startActivity(intent);
Receiving Activity
Bundle bb = this.getIntent().getExtras();
b = bb.getParcelable("BITMAP");
But i am getting !!! FAILED BINDER TRANSACTION !!! Error