I am porting a B4A app to B4I. One thing that is causing me trouble is the Webview pageFinished event.
I have a scrolling webpage in the view, where the URL changes with scrolling. In B4A every time you move the page, the PageFinished event fires, and URL is updated. This is perfect for my purpose. In B4I, the event fires once when the page is first loaded, but not after that.
Is there a property I can check to get the currentURL?
Thanks!
B4X:
Private Sub WebV_Map_PageFinished (Success As Boolean, Url As String)
Log(Url)
End Sub
I have a scrolling webpage in the view, where the URL changes with scrolling. In B4A every time you move the page, the PageFinished event fires, and URL is updated. This is perfect for my purpose. In B4I, the event fires once when the page is first loaded, but not after that.
Is there a property I can check to get the currentURL?
Thanks!