How to play video URL inside android webview

后端 未结 10 1522
谎友^
谎友^ 2020-12-10 12:51

I want to play video url inside my application webview but when i am run the application it showing only white screen . i had read some post on this and i have used that cod

10条回答
  •  悲&欢浪女
    2020-12-10 13:22

    If tried others anwsers no work,maybe you can try this:

     if(Build.VERSION.SDK_INT>= Build.VERSION_CODES.LOLLIPOP){
            webview.getSettings().setMixedContentMode(WebSettings.MIXED_CONTENT_ALWAYS_ALLOW);
        }
    

提交回复
热议问题