My activity has more than one webview. How do I determine which webview triggered the Page Finished event?
It looks like the standard approach only supplies the url. I want to also get the webview that triggered the event.
How do I do this?
B4X:
Sub myWebview_PageFinished(Url As String)
Log("myWebview Attributes")
Log(Url) 'This is the right url
Log(myWebview) 'This is the wrong webview
End Sub
It looks like the standard approach only supplies the url. I want to also get the webview that triggered the event.
How do I do this?