Android Question TabStrip: access all the elements in every TabPage

wizard699

Active Member
Licensed User
Longtime User
I can't explore my tabscript with this code, because this code check only in tabsContainer

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?
 

wizard699

Active Member
Licensed User
Longtime User
I've this structure:
- Activity with tabStrip
- Three layout for the three pages
- in one layout there is component like ULV

How can access to ULV in PAge1 of tabStrip?
 
Upvote 0
Top