Browse Source

eSpeakActivity: revert a workaround for the Parcel error from the eSpeak activity

master
Reece H. Dunn 9 years ago
parent
commit
633b7a5673
1 changed files with 1 additions and 8 deletions
  1. 1
    8
      android/src/com/reecedunn/espeak/eSpeakActivity.java

+ 1
- 8
android/src/com/reecedunn/espeak/eSpeakActivity.java View File

@@ -198,14 +198,7 @@ public class eSpeakActivity extends Activity {
private Locale getTtsLanguage() {
if (mTts != null) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
android.speech.tts.Voice voice = null;
try {
voice = mTts.getVoice();
} catch (NullPointerException e) {
// Android Lollipop and later may throw a NullPointerException
// if a voice is not selected.
return null;
}
android.speech.tts.Voice voice = mTts.getVoice();
if (voice != null) {
return voice.getLocale();
}

Loading…
Cancel
Save