I currently use AHViewPager, AHViewPagerFixedTabs and AHPageContainer for my tabbing pages and was considering converting to TabStrip
Having one (I believe) simple problem
In AHPageContainer if I want a two line Tab all I have to do is
If I try this in TabStrip
It just discards the CRLF and puts out the text as 1 line
Is there anyway to get a two line tab
BobVal
Having one (I believe) simple problem
In AHPageContainer if I want a two line Tab all I have to do is
B4X:
mContainer.AddPage(ClassPanel, "Line 1" &CRLF "Line2")
If I try this in TabStrip
B4X:
TabStrip1.LoadLayout("Page2", "THIS IS" &CRLF &"PAGE 2") ' Modifies from Erel's example
It just discards the CRLF and puts out the text as 1 line
Is there anyway to get a two line tab
BobVal