如何在Android中使用QML - QWebView

时间:2018-02-03 05:03:18

标签: android qt qml qwebview

我想在Android中部署一个YouTube应用程序。但它只能在我的计算机上运行,​​并且在Android上不起作用。它不加载任何视频。 问题只出在QWebView上。我使用了与此类似的代码:http://doc.qt.io/archives/qt-5.5/qtwebkitexamples-webkitqml-youtubeview-example.html

1 个答案:

答案 0 :(得分:-1)

if you are using Qt5. You should use WebEngineView, QWebView will not work on android.

import QtQuick 2.0
import QtWebEngine 1.4

Item{
    id:root
    height: 500
    width:  500

   Rectangle{
      anchors.fill: parent
      color: "black"

      WebEngineView{
         id : webEnginView
         anchors.fill: parent
         url : https://www.google.com
      }
   }
}