首页 > 代码库 > android webview 通过html5播放在线视频 切换大屏
android webview 通过html5播放在线视频 切换大屏
1、添加网络访问权限
<uses-permission android:name="android.permission.INTERNET" />
developer官方文档关于html5支持视频播放描述如下:In order to support inline HTML5 video in your application, you need to have hardware acceleration turned on, and set a WebChromeClient
. For full screen support, implementations of onShowCustomView(View, WebChromeClient.CustomViewCallback)
and onHideCustomView()
are required, getVideoLoadingProgressView()
is optional.
1)开启硬件加速2)重写WebChromeClient的onShowCustomView(View, WebChromeClient.CustomViewCallback)
和onHideCustomView()
通过onShowcustomView对大屏的布局进行加载,隐藏小屏布局;在onHideCustomeView中退出全屏播放,重新显示小屏布局
参考:
http://developer.android.com/reference/android/webkit/WebView.html
http://stackoverflow.com/questions/12708890/youtube-video-not-playing-in-webview-android/12850816#12850816
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。