Sub Globals
'These global variables will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
Dim wv As WebView
End Sub
Sub Activity_Create(FirstTime As Boolean)
wv.Initialize("wv")
Activity.AddView(wv,0,0,100%x,50%y)
Dim Url="https://youtu.be/gIb00j1x2Pk" As String
wv.LoadUrl(Url)
End Sub