Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Android Wearable Programming

You're reading from   Android Wearable Programming Expand on your Android development capabilities by building applications for Android Wear

Arrow left icon
Product type Paperback
Published in Jul 2015
Publisher
ISBN-13 9781785280153
Length 224 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Steven F. Daniel Steven F. Daniel
Author Profile Icon Steven F. Daniel
Steven F. Daniel
Arrow right icon
View More author details
Toc

Table of Contents (8) Chapters Close

Preface 1. Understanding Android Wearables and Building Your First Android Wear App 2. Creating Notifications FREE CHAPTER 3. Creating, Debugging, and Packaging Wearable Apps 4. Sending and Syncing Data 5. Working with Google Glass 6. Designing and Customizing Interfaces for Android TV Index

Receiving voice input within a notification

In this section, we will be taking a look at how we can use notifications that can allow the user to respond to these by simply using their voice. Since Android wearable devices don't contain a keyboard, a user can swipe on a notification and respond to the action using their voice, or simply by choosing from a list of options presented to them, and tapping on the item right from their Android wearable device.

To receive voice input within a notification, perform the following steps:

  1. Open the MainActivity.java file from within the Project Navigator window.
  2. Modify the onCreate(Bundle savedInstanceState) method and add the following highlighted code:
    @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
    
            // Clear all previous notifications and
            // generate new unique ids
            NotificationManagerCompat.from(this).cancelAll(...
You have been reading a chapter from
Android Wearable Programming
Published in: Jul 2015
Publisher:
ISBN-13: 9781785280153
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 $19.99/month. Cancel anytime
Banner background image