Android Utililty Methods TextToSpeech Get

List of utility methods to do TextToSpeech Get

Description

The list of methods to do TextToSpeech Get are organized into topic(s).

Method

StringgetTtsCurrentEngine(TextToSpeech tts)
get Tts Current Engine
if (tts != null) {
    final Class<?> ttsClass = tts.getClass();
    try {
        final Method method = ttsClass
                .getMethod("getCurrentEngine");
        String engName = (String) method.invoke(tts,
                (Object[]) null);
        return engName != null ? engName : "";
...