How Do I Add My App To The Android 'share Photo' Option?
Possible Duplicate: Android Share Via Dialog For example, when you hit share photo, it gives you a list of options to share through (Instagram, Messaging, Gmail, etc.). I want
Solution 1:
Add this intent filter to your activity in the manifest:
<intent-filter><actionandroid:name="android.intent.action.SEND" /><categoryandroid:name="android.intent.category.DEFAULT" /></intent-filter>
Solution 2:
See this question on StackOverflow. In the question you will see what you have to add to the manifest and in the first answer you will find how to retreive the data in your activity.
Post a Comment for "How Do I Add My App To The Android 'share Photo' Option?"