Video not playing in Android

前端 未结 5 428
情歌与酒
情歌与酒 2020-12-30 12:33

Video not working properly in the below mentioned code. What could be the problem for this?

MediaController mediaController = new MediaController(getBaseCont         


        
5条回答
  •  暖寄归人
    2020-12-30 13:07

    OK, try the following code. It will work.

    Intent i = new Intent(Intent.ACTION_VIEW);
    i.setData(Uri.parse("http://www.youtube.com/v/wwI2w2YHkCQ?fs=1"));
    startActivity(i);
    

提交回复
热议问题