I have created a app where you can download YouTube videos for android. Now, I want it so that if you play a video in the YouTube native app you can download it too. To do this, I need to know the Intent that the YouTube native app puts out in order to play the YouTube app.
I could do this easially if I had the YouTube program on my emulator, so my 1st question is:
1. Can I download the YouTube app for my emulator, or...
2. What is the intent used when the user selects a video for playback.
|
|
||||
|
|
|
This will work on a device but not the emulator per Lemmy's answer.
|
|||||||||||||
|
|
Here's how I solved this issue:
Now that I've done some more research, it looks like I only needed 'vnd.youtube:VIDEO_ID' instead of two slashes after the colon (':' vs. '://'): http://it-ride.blogspot.com/2010/04/android-youtube-intent.html I tried most of the suggestions here and they didn't really work very well with all of the supposed "direct" methods raising exceptions. I would assume that, with my method, if the YouTube app is NOT installed, the OS has a default fallback position of something other than crashing the app. The app is theoretically only going on devices with the YouTube app on them anyway, so this should be a non-issue. |
|||
|
Use my code .. I am able to play youtube video using this code ... you just need to provide youtube video id in the "videoId" variable ....
|
|||||
|
where videoId is the video id of the youtube video that has to be played. This code works fine on Motorola Milestone. But basically what we can do is to check for what activity is loaded when you start the Youtube app and accordingly substitute for the packageName and the className. |
|||||
|
|
The Youtube (and Market application) are only supposed to be used with special ROMs, which Google released for the G1 and the G2. So you can't run them in an OpenSource-ROM, like the one used in the Emulator, unfortunately. Well, maybe you can, but not in an officially supported way. |
|||||
|
|
|
And how about this
|
||||
|
|
|
Found it:
|
|||
|
|
|
EDIT: The below implementation proved to have problems on at least some HTC devices (they crashed). For that reason I don't use setclassname and stick with the action chooser menu. I strongly discourage using my old implementation. Following is the old implementation:
Where Utility is my own personal utility class with following methode:
First I check if youtube is installed, if it is installed, I tell android which package I prefer to open my intent. |
|||||||
|
|
Replying to old question, just to inform you guys that package have changed, heres the update
This works very well, but when you call normal Intent with ACTION_VIEW with valid youtube URL user gets the Activity selector anyways. |
|||
|
|
|
You can also just grab the
Worked fine in my app. |
||||
|
|
|
Try this,
|
|||||
|
|
Try this:
|
||||
|
|
protected by rynah Jul 6 '12 at 21:31
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.