WebView onLoadingChanged on Android (QML, Qt 5.5) -


trying port easy code android:

import qtquick 2.4 import qtquick.controls 1.4 import qtwebview 1.0 import qtquick.layouts 1.1 import qtgraphicaleffects 1.0 import qtmultimedia 5.4  item {     id: root     webview {         id: webview         url: "http://www.stackoverflow.com"         anchors.fill: root         onloadingchanged: {             console.log("onloadingchanged called.");         }     }      busyindicator {         running: webview.loading         anchors.centerin: webview     } } 

this code doesn't work on android. if remove onloadingchanged method, work , page shown. code bellow works fine on windows. made "3rd leg" app, if onloadingchanged work on android or give me trick, great.


Comments

Popular posts from this blog

1111. appearing after print sequence - php -

java - WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/board/] in DispatcherServlet with name 'appServlet' -

node.js - Express and Redis - If session exists for this user, don't allow access -