Hi,
I'm starting to port my app to b4i. I can install it with the b4i bridge, but when I run it, I get a bar at the top of screen that says 'Activity'.
I don't know if this is part of the bridge or part of my app, but how can I get rid of it?
I have manged to make it run full screen using the steps in the link below. https://www.b4x.com/android/forum/threads/full-screen-apps.47866/#content
I think so. If I change the Page Title in the designer from "Activity" to "", the word Activity disappears, but I still have that whitish bar across the top of the app.
I opened the same topic with you without reading this sorry. Erel you can delete my other topic about the same question. Yes page title i think sorex . at least for me
add this to the beginning of your source in the _start event and see what happends.
B4X:
Dim no As NativeObject = App
no.RunMethod("setStatusBarHidden:animated:", Array(True, False))
NavControl = Nav
NavControl.NavigationBarVisible = False
NavControl.ToolBarVisible=False
add this to the beginning of your source in the _start event and see what happends.
B4X:
Dim no As NativeObject = App
no.RunMethod("setStatusBarHidden:animated:", Array(True, False))
NavControl = Nav
NavControl.NavigationBarVisible = False
NavControl.ToolBarVisible=False