How to auto play iframe youtube on webview android

前端 未结 7 506
不知归路
不知归路 2021-01-19 00:52

I use android webview in my app for display video from youtube it\'s work well.

But i want it\'s auto play.

This is my activity i append \"?autoplay=

7条回答
  •  孤街浪徒
    2021-01-19 01:33

    A little late but I hope this helps.

    After your page is finished loading run this:-

     yourWebView.loadUrl("javascript:(function() { document.getElementsByClassName('ytp-large-play-button ytp-button')[0].click(); })()");
    

提交回复
热议问题