creating mobile applications with jquery mobile … · creating mobile applications with jquery...

16
© 2013 Adobe Systems Incorporated. All Rights Reserved. Adobe Condential. Creating Mobile Applications with jQuery Mobile and PhoneGap Build Chris Grith | StaEngineer – Qualcomm Technology Inc. 1

Upload: buicong

Post on 17-Sep-2018

260 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Creating Mobile Applications with jQuery Mobile … · Creating Mobile Applications with jQuery Mobile and PhoneGap Build 3 ... Creating Mobile Applications with jQuery Mobile and

© 2013 Adobe Systems Incorporated. All Rights Reserved. Adobe Con!dential.

Creating Mobile Applications with jQuery Mobile and PhoneGap Build Chris Griffith | Staff Engineer – Qualcomm Technology Inc.

1

Page 2: Creating Mobile Applications with jQuery Mobile … · Creating Mobile Applications with jQuery Mobile and PhoneGap Build 3 ... Creating Mobile Applications with jQuery Mobile and

© 2013 Adobe Systems Incorporated. All Rights Reserved. Adobe Con!dential.

Disclaimer

$ese opinions and thoughts are my own, and may or may not re%ect the opinions of the company that I work for.

2

Page 3: Creating Mobile Applications with jQuery Mobile … · Creating Mobile Applications with jQuery Mobile and PhoneGap Build 3 ... Creating Mobile Applications with jQuery Mobile and

© 2013 Adobe Systems Incorporated. All Rights Reserved. Adobe Con!dential.

Creating Mobile Applications with jQuery Mobile and PhoneGap Build

3

Page 4: Creating Mobile Applications with jQuery Mobile … · Creating Mobile Applications with jQuery Mobile and PhoneGap Build 3 ... Creating Mobile Applications with jQuery Mobile and

© 2013 Adobe Systems Incorporated. All Rights Reserved. Adobe Con!dential.

Creating Mobile Applications with jQuery Mobile and PhoneGap Build

4

Page 5: Creating Mobile Applications with jQuery Mobile … · Creating Mobile Applications with jQuery Mobile and PhoneGap Build 3 ... Creating Mobile Applications with jQuery Mobile and

© 2013 Adobe Systems Incorporated. All Rights Reserved. Adobe Con!dential.

Lab 7: Update

<section id="parkDetailsPage" data-role="page"> <header data-role="header" data-position="!xed" data-id="appHeader"> <h1>National Parks</h1> <a href="#about" data-role="bu&on" data-transition="fade" data-icon="info" data-

iconpos="notext" class="ui-btn-right">About</a> </header> <div id="parkDetails" data-role="content"> <img src="../../img/headers/arches.jpg"> <h1>Arches</h1> <h2>Utah</h2> <h3>Created: February 26, 1919</h3> <p>Park details</p> </div>

</section>

5

Page 6: Creating Mobile Applications with jQuery Mobile … · Creating Mobile Applications with jQuery Mobile and PhoneGap Build 3 ... Creating Mobile Applications with jQuery Mobile and

© 2013 Adobe Systems Incorporated. All Rights Reserved. Adobe Con!dential.

JSON

6

JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate.

Page 7: Creating Mobile Applications with jQuery Mobile … · Creating Mobile Applications with jQuery Mobile and PhoneGap Build 3 ... Creating Mobile Applications with jQuery Mobile and

© 2013 Adobe Systems Incorporated. All Rights Reserved. Adobe Con!dential.

JSON example

7

var npsdata = {"parks": [ {

"id":"0", "name": "Acadia", "createDate": "February 26, 1919", "lat": "44.35", "lon": "-68.21", "image": "acadia.jpg", "state": "Maine", "data": "Covering most of Mount Desert Island and other coastal islands, Acadia preserves the tallest mountain on the Atlantic coast, granite peaks, ocean shoreline, woodlands, and lakes. There are freshwater, estuary, forest, and intertidal habitats." } ]};

Page 8: Creating Mobile Applications with jQuery Mobile … · Creating Mobile Applications with jQuery Mobile and PhoneGap Build 3 ... Creating Mobile Applications with jQuery Mobile and

© 2013 Adobe Systems Incorporated. All Rights Reserved. Adobe Con!dential.

JSONLint

8

Page 9: Creating Mobile Applications with jQuery Mobile … · Creating Mobile Applications with jQuery Mobile and PhoneGap Build 3 ... Creating Mobile Applications with jQuery Mobile and

© 2013 Adobe Systems Incorporated. All Rights Reserved. Adobe Con!dential.

$eming Tools

9

Page 10: Creating Mobile Applications with jQuery Mobile … · Creating Mobile Applications with jQuery Mobile and PhoneGap Build 3 ... Creating Mobile Applications with jQuery Mobile and

© 2013 Adobe Systems Incorporated. All Rights Reserved. Adobe Con!dential.

Con!g.xml

10

<?xml version="1.0" encoding="UTF-8"?> <widget xmlns = "h&p://www.w3.org/ns/widgets" xmlns:gap = "h&p://phonegap.com/ns/1.0" id = "com.adobemax.park!nder" versionCode="" version = "1.0"> <name>Park Finder</name> <description>A demonstration of jQuery Mobile and PhoneGap Build</description> <author href="h&p://www.aj-so'ware.com" [email protected]>Chris Griffith</author> <preference name="phonegap-version" value="2.2.0" /> <preference name="orientation" value="portrait" /> <preference name="target-device" value="universal" /> <preference name="fullscreen" value="false" /> <preference name="webviewbounce" value="true" /> <preference name="prerendered-icon" value="true" /> <preference name="stay-in-webview" value="true" /> <preference name="ios-statusbarstyle" value="black-opaque" /> <preference name="disable-cursor" value="true" />

Page 11: Creating Mobile Applications with jQuery Mobile … · Creating Mobile Applications with jQuery Mobile and PhoneGap Build 3 ... Creating Mobile Applications with jQuery Mobile and

© 2013 Adobe Systems Incorporated. All Rights Reserved. Adobe Con!dential.

Con!GAP

11

h&p://aj-so'ware.com/con!gap/

Page 12: Creating Mobile Applications with jQuery Mobile … · Creating Mobile Applications with jQuery Mobile and PhoneGap Build 3 ... Creating Mobile Applications with jQuery Mobile and

© 2013 Adobe Systems Incorporated. All Rights Reserved. Adobe Con!dential.

Codiqa

12

h&ps://codiqa.com/

Page 13: Creating Mobile Applications with jQuery Mobile … · Creating Mobile Applications with jQuery Mobile and PhoneGap Build 3 ... Creating Mobile Applications with jQuery Mobile and

© 2013 Adobe Systems Incorporated. All Rights Reserved. Adobe Con!dential.

Books

13

Page 14: Creating Mobile Applications with jQuery Mobile … · Creating Mobile Applications with jQuery Mobile and PhoneGap Build 3 ... Creating Mobile Applications with jQuery Mobile and

© 2013 Adobe Systems Incorporated. All Rights Reserved. Adobe Con!dential.

Take the SESSION SURVEY on the MAX COMPANION app

14

…for your chance to WIN one of these e-books from Adobe Press

Every survey you submit enters your name to win the daily grand prize -

an Apple® iPod Nano®.

Page 15: Creating Mobile Applications with jQuery Mobile … · Creating Mobile Applications with jQuery Mobile and PhoneGap Build 3 ... Creating Mobile Applications with jQuery Mobile and

© 2013 Adobe Systems Incorporated. All Rights Reserved. Adobe Con!dential.

Contact Info

15

[email protected]

@chrisgriffith

chrisgriffith.wordpress.com

Page 16: Creating Mobile Applications with jQuery Mobile … · Creating Mobile Applications with jQuery Mobile and PhoneGap Build 3 ... Creating Mobile Applications with jQuery Mobile and

© 2013 Adobe Systems Incorporated. All Rights Reserved. Adobe Con!dential.