user788511
user788511

Reputation: 1736

How to start video using intent android

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

Answers (1)

nhaarman
nhaarman

Reputation: 100358

Intent tostart = new Intent(Intent.ACTION_VIEW);
tostart.setDataAndType(Uri.parse(movieurl), "video/*");
startActivity(tostart);

Upvotes: 5

Related Questions