Skip to content Skip to sidebar Skip to footer

How To Appear My App In Youtube Share Via List?

YouTube App for tablets has a sharing-option. For example: I watch a video in the YouTube app and click the button to share. Bluetooth, Googlemail, and Dropbox appear for me. I won

Solution 1:

You have to put this intent filter inside an Activity tag in your Manifest file...

<intent-filter><actionandroid:name="android.intent.action.SEND" /><categoryandroid:name="android.intent.category.DEFAULT" /><dataandroid:mimeType="image/*" /> /* WRITE THE CORRECT TYPE */
    </intent-filter>

Then you have to develop the way your Activity handles the data from the current intent.

Post a Comment for "How To Appear My App In Youtube Share Via List?"