Created
April 1, 2011 10:58
-
-
Save masuidrive/898000 to your computer and use it in GitHub Desktop.
Titanium Mobile for Android
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
Titanium.UI.setBackgroundColor('#000'); | |
var win1 = Titanium.UI.createWindow({ | |
backgroundColor:'#888' | |
}); | |
win1.open(); | |
var actInd = Titanium.UI.createActivityIndicator({ | |
message: "Downloading...", | |
// undocumented feature | |
type: 1, | |
min: 0, | |
max: 100, | |
value: 0 | |
}); | |
actInd.show(); | |
setTimeout(function() { | |
actInd.value = 80; | |
}, 3 * 1000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment