iOS Question Get rid of 'Activity' at top of B4i bridge?

Arf

Well-Known Member
Licensed User
Longtime User
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.
 
Upvote 0

sorex

Expert
Licensed User
Longtime User
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
 
Upvote 0

Arf

Well-Known Member
Licensed User
Longtime User
Awesome, it worked. I had everything there, except:
NavControl.NavigationBarVisible = False

Cheers!
 
Upvote 0

sorex

Expert
Licensed User
Longtime User
I edited my post while you were posting aswell.

the last line has been added, not sure if you had it or not.
 
  • Like
Reactions: Arf
Upvote 0

tufanv

Expert
Licensed User
Longtime User
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

Yeah works fine TY!
 
Upvote 0
Top