Sub Activity_Create(FirstTime As Boolean)
' Set view locations and set defaults.
'-------------------------------------
Activity.LoadLayout("main")
Activity.SetBackgroundImage(LoadBitmap(File.DirAssets, "balloons.png"))
Utils.CenterView(PanelSplashScreen, Activity)
Utils.CenterView(PanelMain, Activity)
If FirstTime Then
PanelSplashScreen.Visible = True
PanelMain.Visible = False
tmrSplashScreen.Initialize("tmrSplashScreen", 5000)
tmrSplashScreen.Enabled = True
Else
PanelSplashScreen.Visible = False
PanelMain.Visible = True
End If
End Sub
Sub ButtonClose_Click
FirstTime = False
Activity.Finish
End Sub