diff options
author | Dianne Hackborn <hackbod@google.com> | 2015-07-15 11:18:09 -0700 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2015-07-15 11:18:09 -0700 |
commit | d0a159025a06a7400ab3dfca1d754494947092e0 (patch) | |
tree | 8c07dfe09413d2cc0219ae0ca8195132dc20ea13 /tests | |
parent | 1d4247c4cc89c6d62e44ed3115f26579979b44b5 (diff) | |
download | frameworks_base-d0a159025a06a7400ab3dfca1d754494947092e0.zip frameworks_base-d0a159025a06a7400ab3dfca1d754494947092e0.tar.gz frameworks_base-d0a159025a06a7400ab3dfca1d754494947092e0.tar.bz2 |
Fix issue #22124996: VI: Command Request not Active
This stupid thing wasn't even completely implemented
in HandlerCaller! D'oh!
Change-Id: I0dac42c208fa0f08a6e20a6cb17b072f51efcaa7
Diffstat (limited to 'tests')
-rw-r--r-- | tests/VoiceInteraction/src/com/android/test/voiceinteraction/TestInteractionActivity.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/VoiceInteraction/src/com/android/test/voiceinteraction/TestInteractionActivity.java b/tests/VoiceInteraction/src/com/android/test/voiceinteraction/TestInteractionActivity.java index 2487e1ca..b0d6b39 100644 --- a/tests/VoiceInteraction/src/com/android/test/voiceinteraction/TestInteractionActivity.java +++ b/tests/VoiceInteraction/src/com/android/test/voiceinteraction/TestInteractionActivity.java @@ -103,6 +103,14 @@ public class TestInteractionActivity extends Activity implements View.OnClickLis } }; mInteractor.submitRequest(mCurrentRequest, REQUEST_CONFIRM); + String[] cmds = new String[] { + "com.android.test.voiceinteraction.COMMAND", + "com.example.foo.bar" + }; + boolean sup[] = mInteractor.supportsCommands(cmds); + for (int i=0; i<cmds.length; i++) { + mLog.append(cmds[i] + ": " + (sup[i] ? "SUPPORTED" : "NOT SUPPORTED") + "\n"); + } } else { Log.i(TAG, "Restarting with active confirmation: " + mCurrentRequest); } |