//this is code where i get the image from previous activity
i = getIntent();
getimage = i.getStringExtra("uri");
BitmapFactory.Options options = new BitmapFactory.Options();
options.inSampleSize = 6;
Bitmap bitmap = BitmapFactory.decodeFile(getimage, options);
Log.e("arun", "arun" + bitmap);
imageView.setImageBitmap(bitmap);
//now how i send it to next activity to show this in imageview of next activity //in next activity i have write
bitmap = (Bitmap) intent.getParcelableExtra("BitmapImage");
previewThumbnail.setImageBitmap(bitmap);
//but error occur