ユーザーの場所を見つけるためのバックグラウンドサービスを作成しました。ここで、ユーザーの場所が変更されたときに音声通知を送信したいと思います。場所の変更を判断して簡単なプッシュ通知を送信するためのコードを作成しましたが、音声通知の作成や音声通知コードの作成方法を教えてもらえますか、ユーザーに音声通知を送信するサードパーティのライブラリはありますか。感謝します。ありがとう
質問する
4081 次
4 に答える
3
はい、ついに私はそれを非常に簡単な方法で完全な解決策で手に入れました。
private TextToSpeech myTTS; // Define the TTS objecy
private int MY_DATA_CHECK_CODE = 0;
//write the following code in oncreate method or whereever you want to use this
{
myTTS = new TextToSpeech(this, this);
Intent checkTTSIntent = new Intent();
checkTTSIntent.setAction(TextToSpeech.Engine.ACTION_CHECK_TTS_DATA);
startActivityForResult(checkTTSIntent, MY_DATA_CHECK_CODE);
speakWords("Pass the String here");
}
private void speakWords(String speech) {
//speak straight away
//myTTS.setLanguage(Locale.US);
System.out.println(speech + " TTSTTTS");
myTTS.speak(speech, TextToSpeech.LANG_COUNTRY_AVAILABLE, null);
}
public void onInit(int status) {
// TODO Auto-generated method stub
if (status == TextToSpeech.SUCCESS) {
if(myTTS.isLanguageAvailable(Locale.US)==TextToSpeech.LANG_AVAILABLE)
myTTS.setLanguage(Locale.US);
} else if (status == TextToSpeech.ERROR) {
Toast.makeText(getApplicationContext(), "Sorry! Text To Speech failed...", Toast.LENGTH_LONG).show();
}
}
于 2012-12-05T06:41:25.173 に答える
2
これはリンクの例 です。必要な部分はここに貼り付けられています。
private TextToSpeech myTTS;
Intent checkTTSIntent = new Intent();
checkTTSIntent.setAction(TextToSpeech.Engine.ACTION_CHECK_TTS_DATA);
startActivityForResult(checkTTSIntent, MY_DATA_CHECK_CODE);
myTTS.speak(speech, TextToSpeech.QUEUE_FLUSH, null);
speakWords(words); //call this function with the string you want as voice
//speak the user text
private void speakWords(String speech) {
//speak straight away
myTTS.speak(speech, TextToSpeech.QUEUE_FLUSH, null);
}
//act on result of TTS data check
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == MY_DATA_CHECK_CODE) {
if (resultCode == TextToSpeech.Engine.CHECK_VOICE_DATA_PASS) {
//the user has the necessary data - create the TTS
myTTS = new TextToSpeech(this, this);
}
else {
//no data - install it now
Intent installTTSIntent = new Intent();
installTTSIntent.setAction(TextToSpeech.Engine.ACTION_INSTALL_TTS_DATA);
startActivity(installTTSIntent);
}
}
}
//setup TTS and don't forget to implement OnInitListener interface to use this method
public void onInit(int initStatus) {
//check for successful instantiation
if (initStatus == TextToSpeech.SUCCESS) {
if(myTTS.isLanguageAvailable(Locale.US)==TextToSpeech.LANG_AVAILABLE)
myTTS.setLanguage(Locale.US);
}
else if (initStatus == TextToSpeech.ERROR) {
Toast.makeText(this, "Sorry! Text To Speech failed...", Toast.LENGTH_LONG).show();
}
}
于 2012-12-04T13:18:47.207 に答える
1
Android のテキスト読み上げ API を使用します。こちらのリファレンスを参照してください
于 2012-12-04T13:08:23.093 に答える
1
通知メソッド (notificationManager.notify(0, notification);
が呼び出される場所) に、次を追加します。
try {
Uri ring_uri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
Ringtone r = RingtoneManager.getRingtone(getApplicationContext(), ring_uri);
r.play();
} catch (Exception e) {
// Error playing sound
}
これにより、通知をプッシュするたびに通知音が鳴ります。
于 2012-12-04T13:46:10.913 に答える