Hello my friends,
I have a strange error reported by a user. Tabstrip causes an error on devices lower than version 12. I have a devices that running at 12.4.1 but i can't reproduce this error in order to have a log file. I use apptize.io in order to reproduce it, indeed it closes my app if tabstrip is shown. So, i built tabstrip lib's example and uploaded at apptize. No error at all. I can't figure out what is the diferrence between lib's example and my project's tabstrip. Tabstrip is loaded through designer.
My code:
If i remove this tabstrip from my layout, everything works fine. So, i figure out that this causes problem. Without log file, it's too dificult to get whats wrong with versions lower than 12
p.s. i don't know what else info to give you in order to help me
I have a strange error reported by a user. Tabstrip causes an error on devices lower than version 12. I have a devices that running at 12.4.1 but i can't reproduce this error in order to have a log file. I use apptize.io in order to reproduce it, indeed it closes my app if tabstrip is shown. So, i built tabstrip lib's example and uploaded at apptize. No error at all. I can't figure out what is the diferrence between lib's example and my project's tabstrip. Tabstrip is loaded through designer.
My code:
B4X:
Public Sub Show
pgVathmologia.Initialize("pgVathmologia")
pgVathmologia.RootPanel.LoadLayout("main") 'this is the layout about iphoneX safe zones
pnlRoot.LoadLayout("vathmologia") 'this is the layout with tabstrip
Main.NavControl.ShowPage(pgVathmologia)
End Sub
Private Sub pgVathmologia_Resize(Width As Int, Height As Int)
Log("pgMain_Resize")
Dim r As Rect = pgVathmologia.SafeAreaInsets
pnlRoot.SetLayoutAnimated(0, 1, r.Left, r.Top, Width - r.Right - r.Left, Height - r.Bottom - r.Top)
End Sub
If i remove this tabstrip from my layout, everything works fine. So, i figure out that this causes problem. Without log file, it's too dificult to get whats wrong with versions lower than 12
p.s. i don't know what else info to give you in order to help me
Last edited: