I did a search on these and didn't get any hits. According to B4x documentation, the #IncludeTitle: False and FullScreen: True options are available in B4a but not in B4i. Is there some other way in B4i, then, that will do the same thing? While testing the title "Page" is pushing my app display down and I can't see the bottom of it.
I did a search on these and didn't get any hits. According to B4x documentation, the #IncludeTitle: False and FullScreen: True options are available in B4a but not in B4i. Is there some other way in B4i, then, that will do the same thing? While testing the title "Page" is pushing my app display down and I can't see the bottom of it.
You can hide the status bar by following these steps: 1. Add this attribute: #PlistExtra: UIViewControllerBasedStatusBarAppearance 2. Add this code: Dim no As NativeObject = app no.RunMethod("setStatusBarHidden:animated:", Array(True, False))
Filipo, I thank you for this. I did get it to work. This may come in handy some day. However, my original question is in reference to the Title that the compiler is putting above my panels. Your code removed the phones native status bar, but still the word MainPage is above my main panel causing the panel to be pushed down.
In B4a, #IncludeTitle = False would remove that but B4i doesn't have that option.
Have you tried NavControl.NavigationBarVisible = False in the Main module?
B4X:
Private Sub Application_Start (Nav As NavigationController)
NavControl = Nav
NavControl.NavigationBarVisible = False
Dim PagesManager As B4XPagesManager
PagesManager.Initialize(NavControl)
End Sub
roumei, That is exactly what I was looking for! Thank you very much! Now I can see the whole panel. After a couple cosmetic changes to things, I'll be ready to run the Apple Store publishing gauntlet. Oh, do I dread that. ?