Skip to content

Instantly share code, notes, and snippets.

@DirleiDionisio
Created October 9, 2012 00:09
Show Gist options
  • Save DirleiDionisio/3855748 to your computer and use it in GitHub Desktop.
Save DirleiDionisio/3855748 to your computer and use it in GitHub Desktop.
App closes after ~1 second on Galaxy Note with Android ICS
var w1 = Ti.UI.createWindow({
backgroundColor: 'yellow',
navBarHidden: true, // create heavyweight window
exitOnClose: true
});
w1.addEventListener('click', function(){
var w2 = Ti.UI.createWindow({
backgroundColor: 'red',
navBarHidden: true // create heavyweight window
});
w2.open();
});
w1.open(); // -> app closes after ~1 second on Galaxy Note
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment