我已在网络视图中启用了视频支持,但在YouTube视频中,没有全屏图标。
在清单中:
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:hardwareAccelerated="true"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
答案 0 :(得分:0)
请点击以下链接;
Web-view with full you-tube video
你需要实现showCustomView&amp; WebChromeClient的hideCustomView方法,你的AndroidManifest文件中还需要android:hardwareAccelerated =“true”。我在这里发布我的示例项目。我所做的是在我的main.xml中保留一个Framelayout(customContainer),并在此处添加在showCustomView中接收的视图,并在onHide中将其删除。还相应地隐藏/显示webview。下面的代码在设备上完美运行。