I have a custom camera app and I want to pass the captured photo into another activity where I can add other icons (emoticons) over it.
How can i pass the captured photo to another activity?
I have a custom camera app and I want to pass the captured photo into another activity where I can add other icons (emoticons) over it.
How can i pass the captured photo to another activity?
You could pass the photo's URI via an intent. Assuming you call your camera with
startActivityForResult()
. In your camera activity:Then in your emoticon activity: