Sub Activity_Create(FirstTime As Boolean)
'Do not forget to load the layout file created with the visual designer. For example:
Activity.LoadLayout("Layout1")
timer1.Initialize("timer1",1000)
timer1.Enabled = True
End Sub
Sub timer1_tick
ImageView1.Top = ImageView1.Top + 50
If ImageView1.Top > 100%y Then
ImageView1.top = 0%y - ImageView1.Height
End If
End Sub