Titanium Community Questions & Answer Archive

We felt that 6+ years of knowledge should not die so this is the Titanium Community Questions & Answer Archive

How to remove Tabs completely?

Alright, I'm wondering how you would remove tabs completely from your App. When you create a new project you get 2 tabs to start out with and you can go from there… What I'm trying to do is just remove them and have one window, instead of multiple windows and multiple tabs.

Any help?

Basically: How do I remove tabs and simply have one window that opens up.

— asked September 13th 2010 by Colton Arabsky
  • window
0 Comments

1 Answer

  • Accepted Answer

    Create your window in app.js. If you have a tabBar and need to hide it.. use the tabBarHidden attribute.. otherwise.. if you don't need one.. just create a window without one..

    var win = Titanium.UI.createWindow({  
            title:'CTZ-9D Initial Setup',
            url:'initial_settings.js',
            tabBarHidden:true,
        });
    
    — answered September 14th 2010 by Critter
    permalink
    0 Comments
The ownership of individual contributions to this community generated content is retained by the authors of their contributions.
All trademarks remain the property of the respective owner.