In B4A you can set the app to Full Screen -Show Title-false; B4i?
Hello,
when answering your reply I was searching options in the code and found something here... In the Main module , when using B4XPages, there is the code:
Private Sub Application_Start (Nav As NavigationController)
NavControl = Nav
Dim PagesManager As B4XPagesManager
PagesManager.Initialize(NavControl)
NavControl.NavigationBarVisible = False <---- I ADDED THIS LINE
End Sub
It looks that the title is created by the navigationController object and thus the only way to remove it is referencing directly this. I'm not sure that this is a good behavior as
@Erel said someplace that when using B4XPages we need to maintain the Main module untouched in favor of multi platform compatibility, but that's what I found to remove it.
If anybody knows some different / more recommendable method, please... tell me.