Android YouTube app Play Video Intent

前端 未结 18 1140
太阳男子
太阳男子 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:36

    Try this,

    WebView webview = new WebView(this); 
    
    String htmlString = 
        "     ";
    
    webview.loadData(htmlString ,"text/html", "UTF-8");
    

提交回复
热议问题