Pausing your application
Although we want our users to spend their time solely on our application, they will inevitably leave our application to open another one or do something else entirely. We need to be able to detect when a user has left our application but not closed it down entirely.
How to do it...
We can use the PhoneGap API to fire off a particular event when our application is in the background of the device:
- Firstly, create a new PhoneGap project named
pausedemo
by running the following command:phonegap create pausedemo com.myapp.pausedemo pausedemo
- Add the devices platform. You can choose to use Android, iOS, or both:
cordova platform add ios cordova platform add android
- Open
www/index.html
and let's clean up unnecessary elements. So we will have the following:<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="format-detection" content="telephone=no" /> <meta name="...