Book Image

PhoneGap 2.x Mobile Application Development HOTSHOT

By : Kerri Shotts
Book Image

PhoneGap 2.x Mobile Application Development HOTSHOT

By: Kerri Shotts

Overview of this book

<p>Do you want to create mobile apps that run on multiple mobile platforms? With PhoneGap (Apache Cordova), you can put your existing development skills and HTML, CSS, and JavaScript knowledge to great use by creating mobile apps for cross-platform devices.</p> <p>"PhoneGap 2.x Mobile Application Development Hotshot" covers the concepts necessary to let you create great apps for mobile devices. The book includes ten apps varying in difficulty that cover the gamut – productivity apps, games, and more - that are designed to help you learn how to use PhoneGap to create a great experience.</p> <p>"PhoneGap 2.x Mobile Application Development Hotshot" covers the creation of ten apps, from their design to their completion, using the PhoneGap APIs. The book begins with the importance of localization and how HTML, CSS, and JavaScript interact to create the mobile app experience. The book then proceeds through mobile apps of various genres, including productivity apps, entertainment apps, and games. Each app covers specific items provided by PhoneGap that help make the mobile app experience better. This book covers the camera, geolocation, audio and video, and much more in order to help you create feature-rich mobile apps.</p>
Table of Contents (19 chapters)
PhoneGap 2.x Mobile Application Development HOTSHOT
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
InstallingShareKit 2.0
Index

The navigation list


The navigation list is a simple navigation pattern for your app. If you have a few items that you want your user to perform, you can use this pattern to present a menu of choices to them. This pattern works well when each topic in your app is different from every other topic. In the following example, getting a quote, making a payment, and reporting an incident would all be very different workflows.

You can take the opportunity to style the screen to a large degree, but be careful not to obscure the list items themselves. By all means, include icons and such, but always make sure the text is nice and readable.

If the user needs to log in for any particular item, be sure to keep them logged for any of the other items, if they are used within the same session. (That is, if I make a payment, I shouldn't then have to log in again to report an incident.)

In general, the number of items in this list should be kept to a minimum. If you have to scroll, you might want to rethink your application's hierarchy.