diff options
| author | 2010-02-11 17:45:55 -0800 | |
|---|---|---|
| committer | 2010-02-11 17:45:55 -0800 | |
| commit | f1e245f7408f18cbb21430abf05a5407d03cfe07 (patch) | |
| tree | 2cd36edc34a70e3ed99230572e34a7a84be8e104 | |
| parent | dc2df328b3c854c7b787bf5298df0c686584125d (diff) | |
Hiding the new TextToSpeech Intent extras for voice data check
to fix the build.
| -rwxr-xr-x | core/java/android/speech/tts/TextToSpeech.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/java/android/speech/tts/TextToSpeech.java b/core/java/android/speech/tts/TextToSpeech.java index c3a6f6b5d957..0db21980e44a 100755 --- a/core/java/android/speech/tts/TextToSpeech.java +++ b/core/java/android/speech/tts/TextToSpeech.java @@ -261,6 +261,7 @@ public class TextToSpeech { * the TextToSpeech engine returns an ArrayList<String> of all the available voices. * The format of each voice is: lang-COUNTRY-variant where COUNTRY and variant are * optional (ie, "eng" or "eng-USA" or "eng-USA-FEMALE"). + * {@hide} */ public static final String EXTRA_AVAILABLE_VOICES = "availableVoices"; /** @@ -268,6 +269,7 @@ public class TextToSpeech { * the TextToSpeech engine returns an ArrayList<String> of all the unavailable voices. * The format of each voice is: lang-COUNTRY-variant where COUNTRY and variant are * optional (ie, "eng" or "eng-USA" or "eng-USA-FEMALE"). + * {@hide} */ public static final String EXTRA_UNAVAILABLE_VOICES = "unavailableVoices"; /** @@ -276,6 +278,7 @@ public class TextToSpeech { * check for by sending an ArrayList<String> of the voices that are of interest. * The format of each voice is: lang-COUNTRY-variant where COUNTRY and variant are * optional (ie, "eng" or "eng-USA" or "eng-USA-FEMALE"). + * {@hide} */ public static final String EXTRA_CHECK_VOICE_DATA_FOR = "checkVoiceDataFor"; |