Android Question Get all label and images of a panel

imgsimonebiliato

Well-Known Member
Licensed User
Longtime User
I use:
B4X:
For Each v As View In Activity.GetAllViewsRecursive
If v Is Label Then
    lb = v
to get all labels of the Activity. At the same time, when the label change, I need to change also an ImageView view, but how do I get the respective one?
 
Top