Created
January 11, 2012 08:41
-
-
Save egomez99/1593753 to your computer and use it in GitHub Desktop.
HintText Cross Platform
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 send = Titanium.UI.createButton({ | |
title : 'Send', | |
style : Titanium.UI.iPhone.SystemButtonStyle.DONE, | |
}); | |
var camera = Titanium.UI.createButton({ | |
systemButton : Titanium.UI.iPhone.SystemButton.CAMERA, | |
}); | |
var cancel = Titanium.UI.createButton({ | |
systemButton : Titanium.UI.iPhone.SystemButton.CANCEL | |
}); | |
var flexSpace = Titanium.UI.createButton({ | |
systemButton : Titanium.UI.iPhone.SystemButton.FLEXIBLE_SPACE | |
}); | |
var textfield = Titanium.UI.createTextField({ | |
hintText : 'Focus to see keyboard with toolbar', | |
height : 65, | |
width : '100%', | |
top : 80, | |
borderStyle : Titanium.UI.INPUT_BORDERSTYLE_BEZEL, | |
keyboardToolbar : [cancel, flexSpace, camera, flexSpace, send], | |
keyboardToolbarColor : '#999', | |
keyboardToolbarHeight : 40, | |
}); | |
var scrollView = Ti.UI.createScrollView({ | |
opacity:0.8, | |
backgroundColor:'red' | |
}); | |
scrollView.add(textfield); | |
win1.add(scrollView); | |
// | |
// 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(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment