Created
August 7, 2012 14:22
-
-
Save yagitoshiro/3285771 to your computer and use it in GitHub Desktop.
emulate home button on android:back event
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
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