Android APIs
public static class

VoiceInteractor.CommandRequest

extends VoiceInteractor.Request
java.lang.Object
   ↳ android.app.VoiceInteractor.Request
     ↳ android.app.VoiceInteractor.CommandRequest

Class Overview

Execute a vendor-specific command using the trusted system VoiceInteractionService. This allows an Activity to request additional information from the user needed to complete an action (e.g. booking a table might have several possible times that the user could select from or an app might need the user to agree to a terms of service). The result of the confirmation will be returned through an asynchronous call to either onCommandResult(boolean, android.os.Bundle) or onCancel().

The command is a string that describes the generic operation to be performed. The command will determine how the properties in extras are interpreted and the set of available commands is expected to grow over time. An example might be "com.google.voice.commands.REQUEST_NUMBER_BAGS" to request the number of bags as part of airline check-in. (This is not an actual working example.)

Summary

Public Constructors
VoiceInteractor.CommandRequest(String command, Bundle args)
Create a new generic command request.
Public Methods
void onCommandResult(boolean isCompleted, Bundle result)
Results for CommandRequest can be returned in partial chunks.
[Expand]
Inherited Methods
From class android.app.VoiceInteractor.Request
From class java.lang.Object

Public Constructors

public VoiceInteractor.CommandRequest (String command, Bundle args)

Added in API level 23

Create a new generic command request.

Parameters
command The desired command to perform.
args Additional arguments to control execution of the command.

Public Methods

public void onCommandResult (boolean isCompleted, Bundle result)

Added in API level 23

Results for CommandRequest can be returned in partial chunks. The isCompleted is set to true iff all results have been returned, indicating the CommandRequest has completed.