handling "mailto" and "tel" hyperlink on QtWebEngine
-
Dear All,
how can i handle "mailto" and "tel" hyperlink case on QtWebEngine android application
Thz
Nelson
-
@NelsonC I think Webview is not supported on android.
-
@p3c0 sorry i mean QtWebEngine
-
@NelsonC AFAIK, QML based WebView (not to confuse with QWebview) will work on android. It is a wrapper around native web browser.
-
@NelsonC The problem with it I found was how to fetch the
mailto
link when clicked on the link. Once you get themailto
link then you can callQt.openUrlExternally
and pass the link as parameter and it should open the default mail client. For eg:onClicked: Qt.openUrlExternally("mailto:someone@example.com?Subject=Hello")