Added in API level 23

VoiceInteractionSession.CommandRequest


public static final class VoiceInteractionSession.CommandRequest
extends VoiceInteractionSession.Request

java.lang.Object
   ↳ android.service.voice.VoiceInteractionSession.Request
     ↳ android.service.voice.VoiceInteractionSession.CommandRequest


A generic vendor-specific request, as per VoiceInteractor.CommandRequest.

Summary

Public methods

String getCommand()

Return the command that is being executed, as per VoiceInteractor.CommandRequest.

void sendIntermediateResult(Bundle result)

Report an intermediate result of the request, without completing it (the request is still active and the app is waiting for the final result), resulting in a call to VoiceInteractor.CommandRequest.onCommandResult with false for isCompleted.

void sendResult(Bundle result)

Report the final result of the request, completing the request and resulting in a call to VoiceInteractor.CommandRequest.onCommandResult with true for isCompleted.

Inherited methods

void cancel()

Ask the app to cancel this current request.

String getCallingPackage()

Return the package name of the application that initiated the request.

int getCallingUid()

Return the uid of the application that initiated the request.

Bundle getExtras()

Return any additional extra information that was supplied as part of the request.

boolean isActive()

Check whether this request is currently active.

String toString()

Returns a string representation of the object.

Object clone()

Creates and returns a copy of this object.

boolean equals(Object obj)

Indicates whether some other object is "equal to" this one.

void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

final Class<?> getClass()

Returns the runtime class of this Object.

int hashCode()

Returns a hash code value for the object.

final void notify()

Wakes up a single thread that is waiting on this object's monitor.

final void notifyAll()

Wakes up all threads that are waiting on this object's monitor.

String toString()

Returns a string representation of the object.

final void wait(long timeoutMillis, int nanos)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait(long timeoutMillis)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait()

Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

Public methods

getCommand

Added in API level 23
public String getCommand ()

Return the command that is being executed, as per VoiceInteractor.CommandRequest.

Returns
String

sendIntermediateResult

Added in API level 23
public void sendIntermediateResult (Bundle result)

Report an intermediate result of the request, without completing it (the request is still active and the app is waiting for the final result), resulting in a call to VoiceInteractor.CommandRequest.onCommandResult with false for isCompleted.

Parameters
result Bundle

sendResult

Added in API level 23
public void sendResult (Bundle result)

Report the final result of the request, completing the request and resulting in a call to VoiceInteractor.CommandRequest.onCommandResult with true for isCompleted. This finishes the request (it is no longer active).

Parameters
result Bundle