I can't explore my tabscript with this code, because this code check only in tabsContainer
lay_tabpagella_1 contains one Panel and a UltimateListView
How can i see all field of object TabScript and than access to every single element in the different tab page?
B4X:
TabStrip1.LoadLayout("lay_tabpagella_1", "Prove")
Dim jo As JavaObject = TabStrip1
Dim r AsReflector
r.Target = jo.GetField("tabStrip")
Dim tc AsPanel = r.GetField("tabsContainer")
Dim res AsList
res.Initialize
For Each v As View In tc
msgbox(v.tag, "test")
Next
lay_tabpagella_1 contains one Panel and a UltimateListView
How can i see all field of object TabScript and than access to every single element in the different tab page?