Play Youtube HTML5 embedded Video in Android WebView

前端 未结 2 1482
旧巷少年郎
旧巷少年郎 2020-12-01 01:27

I am having a problem running a HTML5 Youtube embedded in a WebView. I want to play a Youtube video on my application. I

2条回答
  •  无人及你
    2020-12-01 01:59

    Step 1 : Simply add this to Manifest file

    android:hardwareAccelerated="true"

    step 2 : check if you are setting layer for your webview.

    (i.e.) //myWebView.setLayerType(View.LAYER_TYPE_SOFTWARE, null);

    setting hardware acceleration to true and commenting these lines worked for me .

    To know more about Hardware Acceleration and Layers look here at http://developer.android.com/guide/topics/graphics/hardware-accel.html

提交回复
热议问题