1

このトピックに関連するほとんどすべてのリンクを調べましたが、適切な答えが見つかりませんでした。基本的なテキスト読み上げアプリケーションを作成しようとしています。エミュレーターでは完全に正常に動作します。しかし、携帯電話で実行すると、サポートされていない言語が表示されます。これはロケールと関係があると思います。私の電話に設定されているデフォルトのロケールen_US は次のとおりです。私のコードは次のとおりです。

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    tts = new TextToSpeech(this, this);
    btnSpeak = (Button) findViewById(R.id.btnSpeak);
    txtText = (EditText) findViewById(R.id.txtText);
    btnSpeak.setOnClickListener(new View.OnClickListener() {

        public void onClick(View arg0) {
            // Method yet to be defined
            speakOut();
        }

    });
}

public void onInit(int status) {
    // TODO Auto-generated method stub
    // TTS is successfully initialized
    if (status == TextToSpeech.SUCCESS) {
        // Setting speech language
        // System.out.println(Locale.getAvailableLocales());
        int result = tts.setLanguage(Locale.ENGLISH);
        // int result = tts.setLanguage(Locale.getDefault());
        // If your device doesn't support language you set above
        if (result == TextToSpeech.LANG_MISSING_DATA
                || result == TextToSpeech.LANG_NOT_SUPPORTED) {
            // Cook simple toast message with message
            Toast.makeText(this, "Language not supported",
                    Toast.LENGTH_LONG).show();
            Log.e("TTS", "Language is not supported");

        } else {
            btnSpeak.setEnabled(true);
        }
        // TTS is not initialized properly
    } else {
        Toast.makeText(this, "TTS Initilization Failed", Toast.LENGTH_LONG)
                .show();
        Log.e("TTS", "Initilization Failed");
    }
}

private void speakOut() {
    // Get the text typed
    String text = txtText.getText().toString();
    // If no text is typed, tts will read out 'You haven't typed text'
    // else it reads out the text you typed
    if (text.length() == 0) {
        tts.speak("You haven't typed text", TextToSpeech.QUEUE_FLUSH, null);
    } else {
        tts.speak(text, TextToSpeech.QUEUE_FLUSH, null);
    }

}

public void onDestroy() {
    // Don't forget to shutdown!
    if (tts != null) {
        tts.stop();
        tts.shutdown();
    }
    super.onDestroy();
}

int result = tts.setLanguage(Locale.getDefault());の代わりに使用してもLocale.ENGLISH、サポートされていない同じ言語のメッセージが表示されます

LOGCATエラー:

02-26 16:24:57.492: I/TextToSpeech.java(23356): initTts() successfully bound to service
02-26 16:24:58.015: E/TTS(23356): Language is not supported

私は自分の携帯電話でこれを実行しています-SamsungGalaxy-Y(GT-S5360)とAndroidバージョン2.3.6

4

1 に答える 1

1

自分で解決策を見つけました。問題は、Androidのデフォルトのttsエンジンで使用可能なロケールが私の電話のロケールと一致しなかったことです。
別のttsエンジンをインストールしましたが、問題なく動作します。

于 2013-03-08T07:48:54.950 に答える