Skip to content

Instantly share code, notes, and snippets.

@masuidrive
Created April 1, 2011 10:58
Show Gist options
  • Save masuidrive/898000 to your computer and use it in GitHub Desktop.
Save masuidrive/898000 to your computer and use it in GitHub Desktop.
Titanium Mobile for Android
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