Please help with how i can add 5 panels to tabstripviewpager, so that i can scroll between them. My code for the panels is shown below:
The panels hold a button and a label. I want to move to next panel, until the 5th panel, with tabstripviewpager
B4X:
for i=0 to 4
Dim pnl As Panel
pnl.Initialize("l")
Dim Button1 As Button
Dim Label1 As Label
pnl.LoadLayout("4")
Next
The panels hold a button and a label. I want to move to next panel, until the 5th panel, with tabstripviewpager