Most visited

Recently visited

Added in API level 4
Deprecated since API level 18

TextToSpeech.OnUtteranceCompletedListener

public static interface TextToSpeech.OnUtteranceCompletedListener

android.speech.tts.TextToSpeech.OnUtteranceCompletedListener


This interface was deprecated in API level 18.
Use UtteranceProgressListener instead.

Listener that will be called when the TTS service has completed synthesizing an utterance. This is only called if the utterance has an utterance ID (see KEY_PARAM_UTTERANCE_ID).

Summary

Public methods

abstract void onUtteranceCompleted(String utteranceId)

Called when an utterance has been synthesized.

Public methods

onUtteranceCompleted

Added in API level 4
void onUtteranceCompleted (String utteranceId)

Called when an utterance has been synthesized.

Parameters
utteranceId String: the identifier of the utterance.

Hooray!