0

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.

Access Denied
  • 7,925
  • 4
  • 35
  • 66

1 Answers1

0

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.

aolphn
  • 2,806
  • 2
  • 20
  • 28