Guest User

Untitled

a guest
Nov 24th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. main.js
  2. var win = Ti.UI.currentWindow;
  3.  
  4. win.backgroundColor = 'red';
  5.  
  6. Ti.Android.currentActivity.addEventListener('pause', function(e){
  7. setTimeout(function(){Ti.App.fireEvent('pause');},500);
  8. });
  9.  
  10. Ti.Android.currentActivity.addEventListener('resume', function(e){
  11. Ti.App.fireEvent('resume');
  12. });
Add Comment
Please, Sign In to add comment