How to start video using intent android
I am trying to start the video media type u开发者_如何学Pythonsing intents. I am completely new to this. I would appreciate a heads up.
Intent tostart = new Intent(Intent.ACTION_VIEW);
tostart.setDataAndType(Uri.parse(movieurl), "video/*");
startActivity(tostart);
精彩评论