This is my Code Erel:
Ok.Im testing with .LoadUrl("
http://www.guiameya.com/mobile/info.html")
But I get a different view than another explorer in PC o mobile phone!!!!
I mean,I always get same even when I change info.html
Thanks in advance
Best Regards
#Region Activity Attributes
#FullScreen: False
#IncludeTitle: True
#End Region
Sub Process_Globals
'These global variables will be declared once when the application starts.
'These variables can be accessed from all modules.
End Sub
Sub Globals
'These global variables will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
Private WebView1 As WebView
End Sub
Sub Activity_Create(FirstTime As Boolean)
Dim myw As WebView
myw.Initialize("myw")
Activity.AddView(myw, 0, 0, 100%x, 100%y) 'Your options for size here
myw.LoadUrl("
http://www.midominio.com/mobile/info.html")
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub