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
  • 8,723
  • 4
  • 42
  • 72

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,950
  • 2
  • 21
  • 30