Skip to content

Instantly share code, notes, and snippets.

@yagitoshiro
Created August 7, 2012 14:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yagitoshiro/3285771 to your computer and use it in GitHub Desktop.
Save yagitoshiro/3285771 to your computer and use it in GitHub Desktop.
emulate home button on android:back event
win.addEventListener('android:back', ()->
intent = Ti.Android.createIntent
action: Ti.Android.ACTION_MAIN
intent.addCategory Ti.Android.CATEGORY_HOME
Ti.Android.currentActivity.startActivity intent
return
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment