Reputation: 1736
I am trying to start the video media type using intents. I am completely new to this. I would appreciate a heads up.
Upvotes: 2
Views: 2703
Reputation: 100358
Intent tostart = new Intent(Intent.ACTION_VIEW);
tostart.setDataAndType(Uri.parse(movieurl), "video/*");
startActivity(tostart);
Upvotes: 5