Book Image

Mastering Android Wear Application Development

By : Siddique Hameed, Javeed Chida
Book Image

Mastering Android Wear Application Development

By: Siddique Hameed, Javeed Chida

Overview of this book

Wearable technology is the future of mobile devices. It looks set to be a breakthrough technology, just like the iPad was before it. With the Apple Watch being widely regarded as a success, all eyes are now on Google to provide a similar device for its users. Keep your skills ahead of the competition and be one of the first to fully understand this powerful new trend. This book will give you a very solid understanding of the philosophy, thought process, development details, and methodologies involved in building well-designed, robust Android Wear applications. We cover the advantages and disadvantages of the wearable computing paradigm and provide a good foundational knowledge for you to build practical, real-world wearable apps. You will learn about the various tools, platforms, libraries, SDKs, and technology needed to build Android Wear apps. By the end of the book, you will be an expert in building Android wearable apps.
Table of Contents (18 chapters)
Mastering Android Wear Application Development
Credits
About the Authors
About the Reviewer
www.PacktPub.com
Preface

Android Wear UI design


By now, it should be clear to us that wearable apps cannot always follow the same UI patterns that their handheld counterparts might. Wearable devices have a significantly smaller form factor and interacting with them places heavier constraints on user actions. For this reason, the Android Wear user interface APIs are functionally divided into Suggest functions and Demand functions.

The Suggest functions are embodied by the Context stream—a stream of information presented in a manner that is proactive and suggestive. Users are shown a vertical list of informational cards, which can be scrolled through until the user wishes to interact with a specific card.

The Demand functions are reflected in the cue card metaphor. A cue card can be opened by saying OK Google, or, we can open it by tapping on the background of the home screen. Each voice command activates a type of voice intent, which in turn can be associated with multiple applications.

When presented with intent, the...