Anyone know how to open new intent to play video from url in android using native video player.
My code as below
Intent intent = new Intent(android.content.Intent.ACTION_VIEW);
Uri data = Uri.parse(UriLink);
intent.setDataAndType(data, "video/*");
startActivity(intent);
when try to play video error msg with unable to play the video. I'm playing the video url http://player.vimeo.com/video/31240369. Any help will appreciated.