I have two apps: App1 which takes an image and assigns it to an address(where the pic was taken), and another app, App2 which takes image and text(address) from App1. When a user clicks on a button in App1, I must pass this image and the text to App2.
Until now, I am able to successfully send an image to App2 using ACTION_SEND. How shall I also send a text together with image?
I already had a look at this android tutorial: http://developer.android.com/training/sharing/send.html#send-multiple-content
But it talks about sending multiple images, and not sending image and text.
You can try making a Parcelable object to hold text and image and send that.
For Parcelable take a look at http://developer.android.com/reference/android/os/Parcelable.html