Sub Process_Globals
'These global variables will be declared once when the application starts.
'These variables can be accessed from all modules.
Private xui As XUI
End Sub
Sub Globals
'These global variables will be redeclared each time the activity is created.
Private WebView1 As WebView
Dim IME As IME
End Sub
Sub Activity_Create(FirstTime As Boolean)
SetStatusBarColor(0xFF000000)
SetNavigationBarColor(0xFF000000)
'#f6a426
IME.Initialize("IME")
IME.AddHeightChangedEvent
WebView1.Initialize("wv")
Activity.LoadLayout("Layout")
WebView1.LoadUrl("https://delivroo.netlify.app/nocapricholanches")
End Sub