I have two apps with different package names. I can launch an activity in the second app from the first app using intents. Now i want to pass the first app's name to the second app and display it in the textbox of the activity launched from first app (i.e. when first app calls second app's activity, the activity displays with a textbox that shows first app's name).
I need some help on how to do this..Thanks
Thanks a lot Erel and DonManfred. What i wanted to do is pass some text and image from app one to app two. I have managed to pass the text. Now in app one i have an image in an image view, i wanted to pass that to an imageview in app two through an intent.
I am thinking i should pass the image as bytes (through clipboard maybe) and convert the bytes back in app two in to an image..Is there a better way of doing this?