In our application we need to send a bitmap from one activity class to another activity after doing some image processing. We call methods in the first activity and then we want to show the output image in the second activity. The two activity classes have different layout xml files. How can we do that?
Share
the Bitmap is parceable as EboMike said , so in your first Activity , you can do this :
and in your SecondActivity , add this code :