The built in 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, Googlem
This worked for me. Add this intent filter to your manifest file to make your application appear in the share list of the youtube application.
Then to retrieve it in your activity, use this :
Bundle extras = getIntent().getExtras(); String value1 = extras.getString(Intent.EXTRA_TEXT);
Here you are!