hello all
I can't handle or catch the override event of the webkit View
I need to note that WebkitWebView1 is already loaded in the layout page1 so it is initialized
any solution?????
I can't handle or catch the override event of the webkit View
B4X:
Sub Globals
Public WebkitWebView1 As WebkitWebView
End Sub
Sub Activity_Create(FirstTime As Boolean)
Private pp As B4XView = xui.CreatePanel("")
pp.SetLayoutAnimated(0,0,0, 100%x, 100%y)
pp.LoadLayout("Page1")
iniwebv(WebkitWebView1,"1")
WebkitWebView1.WebView.LoadUrl("http://zzzz.zzzz.net")
wkivwslist.Initialize
wkivwslist.Add(pp)
ASViewPagerNative1.AddPages(wkivwslist)
End Sub
Private Sub WebkitWebView1_OverrideUrl (url As String) As Boolean 'Works from API level 1 and above.
LogColor( url,Colors.Blue)
End Sub
any solution?????