Courtesy: GitHub

Android WearSpeakerSample Sample

A sample that shows how you can record voice using the microphone on a wearable and play the recorded voice or an mp3 file, if the wearable device has a built-in speaker.

This sample doesn't have any companion phone app so you need to install this directly on your watch (using "adb").

Pre-requisites

  • Android SDK v26
  • Android Build Tools v26.0.1
  • Android Support Repository

Getting Started

This sample uses the Gradle build system. To build this project, use the "gradlew build" command or use "Import Project" in Android Studio.

Support

If you've found an error in this sample, please file an issue: https://github.com/googlesamples/android-WearSpeakerSample

Patches are encouraged, and may be submitted by forking this project and submitting a pull request through GitHub. Please see CONTRIBUTING.md for more details.

License

Copyright 2017 The Android Open Source Project, Inc.

Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

compileSdkVersion 26

applicationId "com.example.android.wearable.speaker"

minSdkVersion 23

targetSdkVersion 26

versionCode 1

versionName "1.0"

compile 'com.android.support:wear:27.0.0'

compile 'com.google.android.gms:play-services-wearable:10.2.6'

compile 'com.android.support:appcompat-v7:27.0.0'

compile 'com.google.android.support:wearable:2.1.0'

package com.example.android.wearable.speaker

uses-permission

  • android.permission.RECORD_AUDIO

MainActivity

We first get the required permission to use the MIC. If it is granted, then we continue with the application and present the UI with three icons: a MIC icon (if pressed, user can record up to 10 seconds), a Play icon (if clicked, it wil playback the recorded audio file) and a music note icon (if clicked, it plays an MP3 file that is included in the app).

Ambient mode controller attached to this display. Used by Activity to see if it is in ambient mode.

Plays back the MP3 file embedded in the application

Stops the playback of the MP3 file.

Checks the permission that this app needs and if it has not been granted, it will prompt the user to grant it, otherwise it shuts down the app.

Starts the main flow of the application.

Determines if the wear device has a built-in speaker and if it is supported. Speaker, even if physically present, is only supported in Android M+ on a wear device..

Prepares the UI for ambient mode.

Restores the UI to active (non-ambient) mode.