I have not been able to locate any discussion / text hinting how do do this .
I would like to pass the contents of an ImageView to another Imageview loaded in a second Activity using CallSubDelayed2.
Main Activity ...
Second Activity ...
I have tried all combinations of referencing bitmaps,backgrounds etc.
Thanks
I would like to pass the contents of an ImageView to another Imageview loaded in a second Activity using CallSubDelayed2.
Main Activity ...
B4X:
ImageView1.Bitmap = LoadBitmap(File.DirInternal, "smiley.png")
CallSubDelayed2(Activity2,"GetImageFromMain",ImageView1.Bitmap)
Second Activity ...
B4X:
Sub GetImageFromMain(image As Bitmap)
ImageView2.Bitmap = image
End Sub
I have tried all combinations of referencing bitmaps,backgrounds etc.
Thanks