diff options
| author | Teddy Wing | 2011-04-29 19:31:29 +0200 | 
|---|---|---|
| committer | Teddy Wing | 2011-04-29 19:31:29 +0200 | 
| commit | 7aeeb267beedf6e773f78bd5d6f14a225df1a09f (patch) | |
| tree | 0e1afea4dc914b1afe5455768d87ec308c9afa47 /Resources/app.js | |
| download | RocheTwit-7aeeb267beedf6e773f78bd5d6f14a225df1a09f.tar.bz2 | |
Nouveau projet Titanium 1.6.2 vierge
Diffstat (limited to 'Resources/app.js')
| -rw-r--r-- | Resources/app.js | 64 | 
1 files changed, 64 insertions, 0 deletions
| diff --git a/Resources/app.js b/Resources/app.js new file mode 100644 index 0000000..b10ea40 --- /dev/null +++ b/Resources/app.js @@ -0,0 +1,64 @@ +// 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 +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 +}); + +var label2 = Titanium.UI.createLabel({ +	color:'#999', +	text:'I am Window 2', +	font:{fontSize:20,fontFamily:'Helvetica Neue'}, +	textAlign:'center', +	width:'auto' +}); + +win2.add(label2); + + + +// +//  add tabs +// +tabGroup.addTab(tab1);   +tabGroup.addTab(tab2);   + + +// open tab group +tabGroup.open(); | 
