Sub Globals
Dim ImageViews As List
End Sub
Sub Activity_Create(FirstTime As Boolean)
ImageViews.Initialize
For i = 0 To 99
Dim iv As ImageView
iv.Initialize("iv")
ImageViews.Add(iv)
Next
'Later to retrieve imageview #57
Dim iv As ImageView
iv = ImageViews.Get(57)
End Sub
Sub Globals
Dim ImageViews As List
End Sub
Sub Activity_Create(FirstTime As Boolean)
ImageViews.Initialize
For i = 0 To 99
Dim iv As ImageView
iv.Initialize("iv")
ImageViews.Add(iv)
Next
'Later to retrieve imageview #57
Dim iv As ImageView
iv = ImageViews.Get(57)
End Sub
Sub Globals
Dim ImageViews As List
End Sub
Sub Activity_Create(FirstTime As Boolean)
ImageViews.Initialize
For i = 0 To 99
Dim iv As ImageView
iv.Initialize("iv")
ImageViews.Add(iv)
Next
'Later to retrieve imageview #57
Dim iv As ImageView
iv = ImageViews.Get(57)
End Sub
You should always start a NEW THREAD in the questionsforum if you have any question.
Adding THREE Posts on a 4 year old thread is the wrong way to ask for help.
You should always start a NEW THREAD in the questionsforum if you have any question.
Adding THREE Posts on a 4 year old thread is the wrong way to ask for help.