javascript - PhoneGap - Button to native phone home screen -


i using phonegap build 2.9.0 create simple app , wondering if it's possible create button take user outside of application , phones default home screen.

i trying emulate close button, realise can't close applications ios can android , blackberry think. workaround try , redirect users default home screen on phone (rather force closing application)

any ideas?

you shouldn't have close(stop) button in android - os designed close apps on own. android can use:

navigator.device.exitapp(); 

here more info on matter: http://community.phonegap.com/nitobi/topics/how_to_exit_from_the_phonegap_app_on_android_and_ios


Comments