Is it possible to loop through a list and find out what kind of BANanoSkeleton view it is? something like that:
B4X:
Dim ListObjects As List = Array As Object(SKRadio1, SKCombo2)
For Each Item As Object In ListObjects
If Item Is SKRadio Then
Dim rbt As SKRadio = Item
Log("is SKRadio")
Else If Item Is SKCombo Then
Dim cbo As SKCombo = Item
Log("is SKCombo")
End If
Next