Sub Globals
'These global variables will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
Dim fb1 As FancyBtn
Private Label1 As Label
End Sub
Sub Activity_Create(FirstTime As Boolean)
'Do not forget to load the layout file created with the visual designer. For example:
'Activity.LoadLayout("Layout1")
'Do not forget to load the layout file created with the visual designer. For example:
Activity.LoadLayout("1")
fb1.Initialize("fb","\uf082",0,1, True)
Activity.AddView(fb1, 0,0dip,100dip,100dip)
fb1.TextSize = 30
fb1.Radius = 50dip
fb1.Text = "FB"
End Sub