Android Question TabStrip's properties at runtime

Alex_Puz

Member
Licensed User
Longtime User
It is not possible to change this property as it is used while the internal views are created.

You can access the headers view with:
B4X:
Dim jo As JavaObject = TabStrip1
Dim v As View = jo.GetField("tabStrip")
'now you can change its Visible property.
Thank you.
 
Upvote 0
Top