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
| Titanium.UI.setBackgroundColor('#000'); | |
| var tabGroup = Titanium.UI.createTabGroup(); | |
| var win = Titanium.UI.createWindow({ | |
| title:'Tab', | |
| backgroundColor:'#fff' | |
| }); | |
| var tab = Titanium.UI.createTab({ |
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
| Titanium.UI.setBackgroundColor('#000'); | |
| var tab_group = Ti.UI.createTabGroup(); | |
| var win = Titanium.UI.createWindow({ }); | |
| win.hideTabBar(); | |
| var edit = Titanium.UI.createButton({title:'Move'}); | |
| win.setRightNavButton(edit); | |
| var data = [ | |
| {title: 'foo'}, |
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
| <html> | |
| <head> | |
| <title>Fetch Image</title> | |
| <script type="text/javascript" src="index.js"></script> | |
| <link href="index.css" rel="stylesheet" type="text/css"/> | |
| </head> | |
| <body> | |
| <h3>Fetch Image From URL:</h3> | |
| <div style='font-weight:bold'>Title</div> | |
| <input id="imgTitle" type="text"></input> |
NewerOlder