diff options
author | Sandeep Siddhartha <sansid@google.com> | 2014-08-08 02:21:46 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-08-08 02:21:46 +0000 |
commit | 140dd87333c7ddc9604a338d7647f664403c7d95 (patch) | |
tree | b033350aea8a1e6a1587fa303d225d28df0a6414 /tests/VoiceInteraction | |
parent | 64a2ad1a3683dfdee84f9001382f58449a68fdce (diff) | |
parent | d98325813682786ce0e1de63f446cc2541b398e3 (diff) | |
download | frameworks_base-140dd87333c7ddc9604a338d7647f664403c7d95.zip frameworks_base-140dd87333c7ddc9604a338d7647f664403c7d95.tar.gz frameworks_base-140dd87333c7ddc9604a338d7647f664403c7d95.tar.bz2 |
am 22a3c9e6: am 9ac2891f: am 53f4a335: Merge "Handle microphone contention/Phone calls while recognition is active" into lmp-dev
* commit '22a3c9e6d899197f772837dabb810a539d3782ac':
Handle microphone contention/Phone calls while recognition is active
Diffstat (limited to 'tests/VoiceInteraction')
-rw-r--r-- | tests/VoiceInteraction/src/com/android/test/voiceinteraction/MainInteractionService.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/VoiceInteraction/src/com/android/test/voiceinteraction/MainInteractionService.java b/tests/VoiceInteraction/src/com/android/test/voiceinteraction/MainInteractionService.java index fcc4626..77c0c32 100644 --- a/tests/VoiceInteraction/src/com/android/test/voiceinteraction/MainInteractionService.java +++ b/tests/VoiceInteraction/src/com/android/test/voiceinteraction/MainInteractionService.java @@ -45,6 +45,16 @@ public class MainInteractionService extends VoiceInteractionService { public void onError() { Log.i(TAG, "onError"); } + + @Override + public void onRecognitionPaused() { + Log.i(TAG, "onRecognitionPaused"); + } + + @Override + public void onRecognitionResumed() { + Log.i(TAG, "onRecognitionResumed"); + } }; private AlwaysOnHotwordDetector mHotwordDetector; |