i have bitmap in ActivityA i want to pass the bitmap from here to ActivityB, i googled for this. when i use this
Intent intent = new Intent(this, NewActivity.class);
intent.putExtra("BitmapImage", bitmap);
for getting
Bitmap bitmap = (Bitmap) intent.getParcelableExtra("BitmapImage");
i am getting this error !!! FAILED BINDER TRANSACTION !!! . how can i solve this problem.