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?