Hello
I'm try to show a web page with WebView but it don't works
Here is the simplified code for to see the problem
(remember to import Phone library)
Please run this code, you will see that a page appeare. Now click on "Entra con SPID" blue button, and another page will appeare, with a list of provider.
Click on "InfoCert ID" button and you will see next page, with a login form.
Ok, it works !!!!
Now please change code in:
Try to do the same clicks but the login form don't appeare.
Anyone can help me ???
Thanks
I'm try to show a web page with WebView but it don't works
Here is the simplified code for to see the problem
(remember to import Phone library)
B4X:
Sub Activity_Create(FirstTime As Boolean)
Dim pi As PhoneIntents
StartActivity(pi.OpenBrowser("https://www.passaportonline.poliziadistato.it/LogInAction.do?codop=loginCittadino"))
Activity.Finish
End Sub
Click on "InfoCert ID" button and you will see next page, with a login form.
Ok, it works !!!!
Now please change code in:
B4X:
Sub Activity_Create(FirstTime As Boolean)
Dim wv As WebView
wv.Initialize("wv")
Activity.AddView(wv, 0, 0, 100%x, 100%y)
wv.JavaScriptEnabled = True
wv.ZoomEnabled = False
wv.LoadUrl("https://www.passaportonline.poliziadistato.it/LogInAction.do?codop=loginCittadino")
End Sub
Try to do the same clicks but the login form don't appeare.
Anyone can help me ???
Thanks