java - ¿Por qué a UtteranceProgress Listener no se le llama en Text to Speech?
android text-to-speech (1)
Cuando llama a tts.speak(text, TextToSpeech.QUEUE_FLUSH, null);
Debes pasarle un mapa con el KEY_PARAM_UTTERANCE_ID
HashMap<String, String> map = new HashMap<String, String>();
map.put(TextToSpeech.Engine.KEY_PARAM_UTTERANCE_ID,"messageID");
tts.speak(text, TextToSpeech.QUEUE_FLUSH, map);
Esto le permite a TextToSpeech saber usar su escucha de emisión para ese text
He intentado llamar a algunos métodos al inicio y al final del texto a voz, así que utilicé setOnUtteranceProgressListener pero no funciona / me llaman.
¿Qué estoy haciendo mal?
Aquí el código necesario:
Clase:
public class SpeechRecognizerActivity extends Activity implements TextToSpeech.OnInitListener
Método de inicio:
@Override
public void onInit(int status) {
if (status == TextToSpeech.SUCCESS) {
String language = Locale.getDefault().getLanguage();
int result = tts.setLanguage(Locale.US);
if (result == TextToSpeech.LANG_MISSING_DATA
|| result == TextToSpeech.LANG_NOT_SUPPORTED) {
Log.e("TTS", "This Language is not supported");
} else {
}
} else {
Log.e("TTS", "Initilization Failed!");
}
}
Método donde comienza el habla:
private void speakOut(String text) {
setTtsListener();
tts.setPitch(1.5f);
tts.setSpeechRate(1.5f);
tts.speak(text, TextToSpeech.QUEUE_FLUSH, null);
}
La escucha (el método se llama en speakOut): ninguno de esos registros se muestra en Logcat.
private void setTtsListener() {
if (Build.VERSION.SDK_INT >= 15)
{
int listenerResult = tts.setOnUtteranceProgressListener(new UtteranceProgressListener()
{
@Override
public void onDone(String utteranceId)
{
Log.d(TAG,"progress on Done " + utteranceId);
}
@Override
public void onError(String utteranceId)
{
Log.d(TAG,"progress on Error " + utteranceId);
}
@Override
public void onStart(String utteranceId)
{
Log.d(TAG,"progress on Start " + utteranceId);
}
});
if (listenerResult != TextToSpeech.SUCCESS)
{
Log.e(TAG, "failed to add utterance progress listener");
}
}
else
{
int listenerResult = tts.setOnUtteranceCompletedListener(new TextToSpeech.OnUtteranceCompletedListener()
{
@Override
public void onUtteranceCompleted(String utteranceId)
{
Log.d(TAG,"progress on Completed " + utteranceId);
}
});
if (listenerResult != TextToSpeech.SUCCESS)
{
Log.e(TAG, "failed to add utterance completed listener");
}
}
}
Una pequeña solución que encontré fue esta:
boolean speakingEnd = tts.isSpeaking();
do {
speakingEnd = tts.isSpeaking();
} while ((speakingEnd));
Log.d(TAG,"talking stopped");
Lo he agregado al final del Método SpeakOut, pero esta solución no es muy buena. Trabajar con los oyentes sería perfecto.
Entonces, ¿qué estoy haciendo mal?