user1135750
user1135750

Reputation:

Android Intent.ACTION_VIEW

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?

Upvotes: 4

Views: 23021

Answers (2)

Nikhil
Nikhil

Reputation: 16194

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); 

Upvotes: 7

Changwei Yao
Changwei Yao

Reputation: 13101

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

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

Upvotes: 1

Related Questions