Enabling HTML5 video playback in android WebView?

前端 未结 2 803
死守一世寂寞
死守一世寂寞 2020-12-16 14:55

I am building a simple webview application which is now displaying a website filled with short video clips, using the HTML5 video player. Everything runs ok in the default a

2条回答
  •  北荒
    北荒 (楼主)
    2020-12-16 15:32

    I got success to show video using html5 video tag using the following code:

    mainWebView.setWebChromeClient(new WebChromeClient());
    
    android:hardwareAccelerated="true"
    

提交回复
热议问题