diff options
Diffstat (limited to 'Resources/app.js')
| -rw-r--r-- | Resources/app.js | 66 | 
1 files changed, 13 insertions, 53 deletions
| diff --git a/Resources/app.js b/Resources/app.js index b10ea40..2dba46e 100644 --- a/Resources/app.js +++ b/Resources/app.js @@ -1,64 +1,24 @@ -// this sets the background color of the master UIView (when there are no windows/tab groups on it) -Titanium.UI.setBackgroundColor('#000'); - -// create tab group +// Create a tab group to contain our views  var tabGroup = Titanium.UI.createTabGroup(); -// -// create base UI tab and root window -// -var win1 = Titanium.UI.createWindow({   -    title:'Tab 1', -    backgroundColor:'#fff' -}); -var tab1 = Titanium.UI.createTab({   -    icon:'KS_nav_views.png', -    title:'Tab 1', -    window:win1 -}); - -var label1 = Titanium.UI.createLabel({ -	color:'#999', -	text:'I am Window 1', -	font:{fontSize:20,fontFamily:'Helvetica Neue'}, -	textAlign:'center', -	width:'auto' -}); - -win1.add(label1); - -// -// create controls tab and root window -// -var win2 = Titanium.UI.createWindow({   -    title:'Tab 2', -    backgroundColor:'#fff' -}); -var tab2 = Titanium.UI.createTab({   -    icon:'KS_nav_ui.png', -    title:'Tab 2', -    window:win2 +// Create the main, root window +var search_win = Titanium.UI.createWindow({ +    title: 'Search Twitter', +    backgroundColor: '#fff', +    tabBarHidden: true,      // hide the tab bar +    url: 'search.js'         // create a new context for this window in 'search.js'  }); - -var label2 = Titanium.UI.createLabel({ -	color:'#999', -	text:'I am Window 2', -	font:{fontSize:20,fontFamily:'Helvetica Neue'}, -	textAlign:'center', -	width:'auto' +// Create the tab to contain our search window +var search_tab = Titanium.UI.createTab({ +    title: 'Search', +    icon: 'KS_nav_views.png', +    window: search_win       // use search_win in this tab  }); -win2.add(label2); - - -//  //  add tabs -// -tabGroup.addTab(tab1);   -tabGroup.addTab(tab2);   - +tabGroup.addTab(search_tab);  // open tab group  tabGroup.open(); | 
