Android Intent.ACTION_VIEW

15,722

Solution 1

Please try below code.

String videoUrl = "http://someurl/video.mp4";
Intent i = new Intent(Intent.ACTION_VIEW);  
i.setDataAndType(Uri.parse(videoUrl),"video/mp4");  
startActivity(i); 

Solution 2

The schema is "http", so the webview will be open.

this is a stream video, try to download it firstly. and then open it.

Share:
15,722
Admin
Author by

Admin

Updated on June 04, 2022

Comments

  • Admin
    Admin almost 2 years

    I need to user choice their own player to play video and I try

    public class VideoViewActivity extends Activity {
        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            String videoUrl = "http://someurl/video.mp4";
            Intent i = new Intent(Intent.ACTION_VIEW);  
            i.setData(Uri.parse(videoUrl));  
            startActivity(i); 
    }
    

    But in my example activity open browser not a list of current installed player. Which option of Intent I should use? Is it possible?

  • Admin
    Admin about 12 years
    Thank you ! You are right, but if I use "Nik...." example I can select browser or player. But in my example url directly opens in default browser.