美文网首页
react-native webview android 网页播

react-native webview android 网页播

作者: 初心不改_0055 | 来源:发表于2018-12-20 17:44 被阅读0次

RN项目中web视频播放,在 android 下无法全屏播放。原因是 React Native 的 android webview 无法默认支持网页全屏播放视频。

通过第三方库 react-native-android-fullscreen-webview-video 来解决。

用法:把 RN 的原生 WebView 引用修改为 'react-native-android-fullscreen-webview-video',如下:

import { WebView } from 'react-native';
// 替换成
import WebView from 'react-native-android-fullscreen-webview-video';

该库其他用法和React native 用法一致。在 ios 下使用 RN 的默认 WebView,在 android 下,通过原生代码对 WebView 增强,实现了网页播放视频全屏。

相关文章

网友评论

      本文标题:react-native webview android 网页播

      本文链接:https://www.haomeiwen.com/subject/fzcukqtx.html