Is it correct to assume that the index of a new View that's just been added, is the total number of Views + 1? As illustrated in the following example:
B4X:
NoOfViews = Activity.GetAllViewsRecursive.Size 'is this syntax correct?
Activity.AddView(lblView, 0, 0, 100dip, 30dip) 'add a new View
lblView.Tag = NoOfViews 'will this be the correct index of the new View?
.
.
.
.
Activity.GetView(lblView.Tag).Top = 100dip 'use the stored index to access the correct view