How can one programmatically determine which views an activity has and of which type each of the views is?
Pseudo-code:
Thank you.
Regards,
Pseudo-code:
B4X:
for n = 1 to Activity.NumberOfViews
v = Activity.View(i)
t = TypeOf(v)
if t = Activity.Types.ImageView then ...
next
Thank you.
Regards,