How can I use the B4XloadingIndicator feature in B4I? in b4a there is the activity.GetAllViewsRecursive resource but in B4I there is no option for activitys
B4X:
For Each v As View In Activity.GetAllViewsRecursive
If v.Tag Is B4XLoadingIndicator And v.Visible = True Then
Dim x As B4XLoadingIndicator = v.Tag
x.Show
End If
Next