Qt WebView 提供在 QML 应用程序中显示 Web 内容的方式,而不必通过使用有意义的本机 API 来包括完整 Web 浏览器堆栈。
这在移动平台是有用的,譬如: Android , iOS ,和 UWP (通用 Windows 平台) ;尤其在 iOS,策略规定所有 Web 内容均使用操作系统的 Web 视图显示。
On Windows and Linux, Qt WebView depends on the Qt WebEngine 模块渲染内容。
On macOS, the system web view is used in the same manner as iOS.
要使 Qt WebView 模块函数正确跨所有平台,必须调用 QtWebView::initialize () 之后才创建 QGuiApplication 实例和在创建窗口的 QPlatformOpenGLContext 之前。
模块提供在应用程序中显示 Web 内容的单 QML 组件: WebView .
由于平台的限制,重叠 WebView 与其它 QML 组件不被支持。这样做会产生不可预测结果,可能因平台而异。
\secion2
Android
From API level 30 the native Android WebView will have file access disabled by default. Since there are no APIs in QtWebView to override the file access property, the two environment variables QT5_ANDROID_WEBVIEW_ALLOW_FILE_ACCESS and QT5_ANDROID_WEBVIEW_ALLOW_FILE_ACCESS_FROM_URLS are provided which, when set, re-enables file access support again.
查看 Qt WebView 范例 了解如何在应用程序中使用 API 的演示。
Qt WebView 在商业许可下是可用的来自 Qt 公司 。此外,它是可用的根据 GNU LGPL (次一般公共许可) 第 3 版 ,或 GNU GPL (一般公共许可) 第 2 版 。见 Qt 许可 进一步了解细节。