Android YouTube app Play Video Intent

前端 未结 18 1302
太阳男子
太阳男子 2020-11-22 11:17

I have created a app where you can download YouTube videos for android. Now, I want it so that if you play a video in the YouTube native app you can download it too. To do t

18条回答
  •  遥遥无期
    2020-11-22 11:43

    Use my code .. I am able to play youtube video using this code ... you just need to provide youtube video id in the "videoId" variable ....

    String videoId = "Fee5vbFLYM4";
    Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("vnd.youtube:"+videoId)); 
    intent.putExtra("VIDEO_ID", videoId); 
    startActivity(intent); 
    

提交回复
热议问题