I have two ImageViews which contain the same image. The Views are located in two different Activities. I want an Animation which – for the user – transforms the Image1 to Image2.
Is it possible to create a Transformation or Animation which resizes and repositions the ImageView from Activity1 to the location and size of the ImageView of Acitivity2?
Hope I made my point somewhat clear…
Thanks!
Ron
No (if I understand your question correctly). Activities are independent. All you can do is pass the attributes (like size, bitmap etc) from first ImageView and apply to second one. Or merge these two activities in one.