Tabgroup Fullscreen with no notification area
Is it possible to have a tabgroup run fullscreen with no notification area.
I have tried opening a window from app.js that has fulscreen: true and navBarHidden : true, When I run the app I see it initially does this but when it loads the js file with the tabgroup the notification area re-appears.
1 Answer
-
What is the "notification area"? If you want an app with no tab bar (but still want some of the functions, like the auto-back button created), do this in your app.js.
// this sets the background color of the master UIView (when there are no windows/tab groups on it) Titanium.UI.setBackgroundColor('#000'); var tabGroup = Titanium.UI.createTabGroup(); // // create base UI tab and root window // var main = Titanium.UI.createWindow({ title:'Plot Me', url:'main.js', }); var maintab = Titanium.UI.createTab({ window:main }); main.hideTabBar(); tabGroup.addTab(maintab); tabGroup.open();