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

Revisiting the Today app


Now that we have the ability to work with a wearable device on our handheld, let's revisit the Today app we developed in the previous chapter.

That simplistic version of the app helped gets us started, no doubt. But it doesn't really cut it for us. In order to enjoy a fuller experience of a wearable device's capabilities, we need to expand our requirements. So, we've decided to devote the rest of this chapter to augmenting our Today app significantly.

We'll describe the features of the new app in a bit, but first, let's get started by creating a new project in Android Studio—one that includes a wearable app as well as a companion app; and setting it up with the sample code for this chapter.

We thought it might be refreshing to start over; that is why our new app is still named Today. Feel free to call it whatever you like:

Be sure to select the form factors for the app as shown in the following screenshot—Phone and Tablet, and Wear :

Add an empty activity to the Mobile...