Android APIs
public static class

VoiceInteractor.CommandRequest

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

Summary

Public Constructors
VoiceInteractor.CommandRequest(String command, Bundle args)
Execute a command using the trusted system VoiceInteractionService.
Public Methods
void onCommandResult(Bundle result)
[Expand]
Inherited Methods
From class android.app.VoiceInteractor.Request
From class java.lang.Object

Public Constructors

public VoiceInteractor.CommandRequest (String command, Bundle args)

Execute a 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(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.)

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

Public Methods

public void onCommandResult (Bundle result)