Most visited

Recently visited

Added in API level 23

VoiceInteractor.AbortVoiceRequest

public static class VoiceInteractor.AbortVoiceRequest
extends VoiceInteractor.Request

java.lang.Object
   ↳ android.app.VoiceInteractor.Request
     ↳ android.app.VoiceInteractor.AbortVoiceRequest


报道当前的交互不能通过语音完成,因此应用程序需要切换到传统的输入UI。 当他们需要彻底摆脱语音交互并切换到传统的用户界面时,应用程序才应该使用它。 响应返回时,语音系统已处理请求并准备切换; 那时应用程序可以开始一个新的非语音活动。 请确保在开始新活动时使用Intent.FLAG_ACTIVITY_NEW_TASK将新活动保留在当前的语音交互任务之外。

Summary

Public constructors

VoiceInteractor.AbortVoiceRequest(VoiceInteractor.Prompt prompt, Bundle extras)

创建新的语音中止请求。

Public methods

void onAbortResult(Bundle result)

Inherited methods

From class android.app.VoiceInteractor.Request
From class java.lang.Object

Public constructors

VoiceInteractor.AbortVoiceRequest

Added in API level 23
VoiceInteractor.AbortVoiceRequest (VoiceInteractor.Prompt prompt, 
                Bundle extras)

创建新的语音中止请求。

Parameters
prompt VoiceInteractor.Prompt: Optional message to speak to the user indicating why the task could not be completed by voice or null if nothing should be spoken.
extras Bundle: Additional optional information or null.

Public methods

onAbortResult

Added in API level 23
void onAbortResult (Bundle result)

Parameters
result Bundle

Hooray!