Added in API level 23

CompleteVoiceRequest

class CompleteVoiceRequest : VoiceInteractionSession.Request
kotlin.Any
   ↳ android.service.voice.VoiceInteractionSession.Request
   ↳ android.service.voice.VoiceInteractionSession.CompleteVoiceRequest

A request to simply inform the user that the voice operation has completed, as per VoiceInteractor.CompleteVoiceRequest.

Summary

Public methods
CharSequence?

Return the message informing the user of the completion, as per VoiceInteractor.CompleteVoiceRequest.

VoiceInteractor.Prompt?

Return the message informing the user of the completion, as per VoiceInteractor.CompleteVoiceRequest.

Unit

Report that the voice interactor has finished completing the voice operation, resulting in a call to VoiceInteractor.CompleteVoiceRequest.onCompleteResult.

Inherited functions

Public methods

getMessage

Added in API level 23
Deprecated in API level 23
fun getMessage(): CharSequence?

Deprecated: Prefer getVoicePrompt() which allows a separate visual message.

Return the message informing the user of the completion, as per VoiceInteractor.CompleteVoiceRequest.

Return
CharSequence? This value may be null.

getVoicePrompt

Added in API level 23
fun getVoicePrompt(): VoiceInteractor.Prompt?

Return the message informing the user of the completion, as per VoiceInteractor.CompleteVoiceRequest.

Return
VoiceInteractor.Prompt? This value may be null.

sendCompleteResult

Added in API level 23
fun sendCompleteResult(result: Bundle!): Unit

Report that the voice interactor has finished completing the voice operation, resulting in a call to VoiceInteractor.CompleteVoiceRequest.onCompleteResult. This finishes the request (it is no longer active).