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, NewActivit
You can simply name you Bitmap as static first.
Bitmap
static
then create a method like
public static Bitmap getBitmap(){ return bitmap; }
then you can simply call from other activities,
bitmapwantedclass.getBitmap();
Hope it helps