Search icon CANCEL
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Mastering Android Wear Application Development

You're reading from  Mastering Android Wear Application Development

Product type Book
Published in Dec 2016
Publisher Packt
ISBN-13 9781785881725
Pages 224 pages
Edition 1st Edition
Languages
Authors (2):
Siddique Hameed Siddique Hameed
Profile icon Siddique Hameed
Javeed Chida Javeed Chida
Profile icon Javeed Chida
View More author details

Table of Contents (18) Chapters

Mastering Android Wear Application Development
Credits
About the Authors
About the Reviewer
www.PacktPub.com
Preface
1. Introduction to Wearable Computing 2. Setting up the Development Environment 3. Developing Android Wear Applications 4. Developing Watch UI 5. Synchronizing Data 6. Contextual Notifications 7. Voice Interactions, Sensors, and Tracking 8. Creating Custom UI 9. Material Design 10. Watch Faces 11. Advanced Features and Concepts 12. Publishing Apps to Google Play

Ambient mode


Ambient mode, in contrast with interactive mode, is the energy saver mode. Depending on the watch and its configuration, an operation such as a click on a dial renders the watch faces in ambient mode:

It may not be obvious at a glance because our app is so simple, but if we compare the preceding screenshot with the screenshot of the watch face in interactive mode, we will see that the seconds don't show up and the colon symbol doesn't blink.

Here's the listener that gets called when the watch face switches from interactive mode to ambient mode:

@Override 
public void onAmbientModeChanged(boolean inAmbientMode)  
{ 
  super.onAmbientModeChanged(inAmbientMode); 
  if (Log.isLoggable(TAG, Log.DEBUG))  
  { 
    Log.d(TAG, "onAmbientModeChanged: " + inAmbientMode); 
  } 
  adjustPaintColorToCurrentMode(mBackgroundPaint, mInteractiveBackgroundColor,WatchFaceUtil.COLOR_VALUE_DEFAULT_AND_AMBIENT_BACKGROUND); 
  adjustPaintColorToCurrentMode(mHourPaint, mInteractiveHourDigitsColor,WatchFaceUtil...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at £13.99/month. Cancel anytime}