Is there another way to pass bitmap between activities in fast way
Intent i = new Intent(this, Second.class)
i.putExtra("Image", bitmap);
startActivity(i)
My Activity slows down when I pass bitmap in android.
Is there another way to pass bitmap between activities in fast way
Intent i = new Intent(this, Second.class)
i.putExtra("Image", bitmap);
startActivity(i)
My Activity slows down when I pass bitmap in android.
I don't think there is a way to do what you want.You can create a class which named ImageManager add a static variable like sBitmap,you can set value in ActivityA and then use it by ImageManager.sBitmap in ActivityB.