Created
August 24, 2011 19:24
-
-
Save appcdr/1168942 to your computer and use it in GitHub Desktop.
Appcelerator: Android Intent Filter app
This file contains 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
Ti.UI.backgroundColor = '#fff'; | |
var win = Ti.UI.createWindow(); | |
var label = Ti.UI.createLabel({ | |
text:"I'll bet you just clicked on a link to http://www.appcelerator.com", | |
color:'#000', | |
font: { | |
fontSize:32 | |
}, | |
width:'80%' | |
}); | |
win.add(label); | |
win.open(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment