Difference between revisions of "Cordova/Phonegap"

From MakeICT Wiki
Jump to navigationJump to search
(Created page with "= Cordova/Phonegap = Cordova/Phonegap looks and many ways is a quick and easy way to build cross-platform mobile applications. It has earned a mixed reputation for performance...")
 
Line 12: Line 12:
  
 
== General Rules of Thumb, HTML5 ==
 
== General Rules of Thumb, HTML5 ==
*  
+
* '''Avoid calls to the DOM''': Store the element references in arrays instead. It's *much* faster.
 +
* '''Use variables local to the scope''': If you are going to reference a variable outside a function/method more than once, store it in a variable local to the scope. Improves lookup speed.
 +
* '''Use jsperf.com''': Often there is more than one way to solve a problem and you need the one fastest to execute. Don't guess but test sing jsperf.com. Also you can find lots of tests there and you may find a test already addressing your speed question.
 +
 
 
== Useful Plugins ==
 
== Useful Plugins ==
 +
''You will likely use '''all'''of these for even the simplest mobile apps
 +
* '''Splashscreen''':
 +
* '''inAppBrowser''':
 +
* '''Device''':
 +
* '''FileSystem''':
 +
* '''Media''': The html5 audio methods do not work in Phonegap/Cordova

Revision as of 07:27, 20 August 2014

Cordova/Phonegap

Cordova/Phonegap looks and many ways is a quick and easy way to build cross-platform mobile applications. It has earned a mixed reputation for performance, though, largely perhaps because there's a few "gotchas" and some misleading documentation that cause significant performance hits.

Rules of Thumb, Phonegap/Cordova Specific

  • Use Cordova, not Phonegap: Cordova and Phonegap used to be almost the same product but they have split and Phonegap offers no significant advantages and on the other hand adds another abstraction level which is unnecessary and unhelpful. On the other hand, Phonegap is a more recognized name, so when Googling for help, Google Phonegap and not Cordova.
  • Don't use JQuery: Things like $('#myGreatElement') are slower to execute than document.getElementById('myGreatElement'). Worse, some methods such as .show() and .hide() use inefficient techniques than can cause lags of even 2-3 seconds as opposed to no lag at all.
  • Don't use JQuery Mobile: JQuery mobile is slow and bloated. However it does offer one feature on their site where you can "roll your own" jquery mobile using only the features you want. Their handling of swipe, touch, etc. is very good and takes only 4k of code so you may want to use this only.
  • Abuse the canvas element: Canvas is very optimized on the modern mobile browsers so use it for anything you may be updating. For example if you have images that you will fade in/out then draw them on a canvas and fade the canvas.
  • Use setTimeout for UI elements: An eventListener callback function for a UI element typically has a visual cue for the user to know they interacted with the element as well as a functional result. Even if the visual cue is executed first in the code, it may appear delayed to user until the entire function is completed. This can cause delays of 50 or 100ms which sound insignficant but make the difference between a native-feeling quick-responding app and one that feels just a bit laggy. Avoid this problem by putting the functional parts of the listener in a setTimeout. Delays of about 50ms seem to work well in general.
  • Use fastclick or touch events: Click events appear delayed on mobile browsers because the browser is waiting to see if you will double-click. Avoid the problem with fastclick or better yet, don't use click events. Touch events give you the option of responding when the user touches the element or (more universally done) when the user releases from the element.
  • Use Crosswalk: The android webview up through KitKat (4.4) performs poorly. Crosswalk wraps your app with the latest Chromium Browser. In my tests this can improve performance more than an order of magnitude in some cases. Moreover, regardless of the Android version the user has, you can know this way what the WebUI is.

General Rules of Thumb, HTML5

  • Avoid calls to the DOM: Store the element references in arrays instead. It's *much* faster.
  • Use variables local to the scope: If you are going to reference a variable outside a function/method more than once, store it in a variable local to the scope. Improves lookup speed.
  • Use jsperf.com: Often there is more than one way to solve a problem and you need the one fastest to execute. Don't guess but test sing jsperf.com. Also you can find lots of tests there and you may find a test already addressing your speed question.

Useful Plugins

You will likely use allof these for even the simplest mobile apps

  • Splashscreen:
  • inAppBrowser:
  • Device:
  • FileSystem:
  • Media: The html5 audio methods do not work in Phonegap/Cordova