Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So I'm trying to make app that will loop through a list of youtube urls. In order to play the video I am using the following code:

startActivityForResult(new Intent(Intent.ACTION_VIEW, Uri.parse(url[i])), 0);

This code will loop to the next video after the user presses the back button.

Can I initiate the next video without having to click on anything? Are there any events fired off by the YouTube app that I could set a broadcast receiver to listen for?

share|improve this question
I'm starting to realize this isn't possible. However, Is there any way to set a broadcast receiver for when the youtube app exits full screen video mode? is there also a intent that will play the youtube app in fullscreen? Because the video exiting fullscreen mode is a excellent indication of when the video has ended. – user1560448 Jul 29 '12 at 17:46

1 Answer

If you want to play multiple YouTube videos YouTube API is what you have to use. This API let you play YouTube videos in your app in fullscreen or not. There is a sample app which shows how to use the library.

See this to know how to start a YouTube playlist.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.