Most visited

Recently visited

Added in API level 23

VoiceInteractionSession.ConfirmationRequest

public static final class VoiceInteractionSession.ConfirmationRequest
extends VoiceInteractionSession.Request

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


按照 VoiceInteractor.ConfirmationRequest的操作用户的确认请求。

Summary

Public methods

CharSequence getPrompt()

此方法在API级别23中已被弃用。首选getVoicePrompt() ,允许多个语音提示。

VoiceInteractor.Prompt getVoicePrompt()

按照 VoiceInteractor.ConfirmationRequest返回通知用户将发生什么的提示。

void sendConfirmationResult(boolean confirmed, Bundle result)

报告语音交互者已确认与用户的操作,导致致电 VoiceInteractor.ConfirmationRequest.onConfirmationResult

Inherited methods

From class android.service.voice.VoiceInteractionSession.Request
From class java.lang.Object

Public methods

getPrompt

Added in API level 23
CharSequence getPrompt ()

此方法在API级别23中已弃用。
首选getVoicePrompt() ,允许多种语音提示。

按照 VoiceInteractor.ConfirmationRequest返回通知用户将发生什么的提示。

Returns
CharSequence

getVoicePrompt

Added in API level 23
VoiceInteractor.Prompt getVoicePrompt ()

按照 VoiceInteractor.ConfirmationRequest返回提示通知用户将发生什么。

Returns
VoiceInteractor.Prompt

sendConfirmationResult

Added in API level 23
void sendConfirmationResult (boolean confirmed, 
                Bundle result)

报告语音交互者已确认与用户的操作,导致致电VoiceInteractor.ConfirmationRequest.onConfirmationResult 这完成了请求(它不再处于活动状态)。

Parameters
confirmed boolean
result Bundle

Hooray!