Sub Activity_Create(FirstTime As Boolean)
'Do not forget to load the layout file created with the visual designer. For example:
'Activity.LoadLayout("Layout1")
Dim lbl As Label
Dim d As Double = 2100.947987
Log(d)
lbl.Initialize("")
Activity.AddView(lbl, 0, 0, 300dip, 100dip)
lbl.Text = d
End Sub