StageWebView Does Not Support "tel:" or "mailto:" URIs ???
I'm using FB 4.6 and StageWebView in my Android app. Basically the app is just a wrapper for a mobile website. Everything is working except links that contain the "tel:" URI and links that contain the "mailto:" URI do not work in StageWebView.
So, after a bit of research I discovered two events that appeared to offer a solution, LOCATION_CHANGING and LOCATION_CHANGE. I had planned to read the location property of the LOCATION_CHANGING event and then if it had a "tel:" URI I would just cancel the operation and use navigateToURL() to launch the URI in the system browser.
Trouble is, the location property of LOCATION_CHANGING is the current page location and not the location indicated by the link that was clicked.
So I tried LOCATION_CHANGE but although the location property is now correct, the page has already been loaded or an error thrown due to the unrecognized URI.
How can I make this work or is there any workaround to StageWebView's lack of support for these URIs?
