0

这是我的 tts 服务代码:

public class SMSTTSService extends Service implements TextToSpeech.OnInitListener, OnUtteranceCompletedListener {

private TextToSpeech tts;
private String spokenText;

@Override
public void onCreate() {
    tts = new TextToSpeech(this, this);     
}

@Override
public void onInit(int status) {        
    if (status == TextToSpeech.SUCCESS) {
        int result = tts.setLanguage(Locale.ENGLISH);

        // tts.setPitch(5); // set pitch level
        // tts.setSpeechRate(2); // set speech speed rate

        if (result == TextToSpeech.LANG_MISSING_DATA || result == TextToSpeech.LANG_NOT_SUPPORTED) {
            Log.e("TTS", "Language is not supported");
        } else {                
            speakOut(spokenText);
        }

        /*if (result != TextToSpeech.LANG_MISSING_DATA && result != TextToSpeech.LANG_NOT_SUPPORTED) {
            tts.speak(c, TextToSpeech.QUEUE_FLUSH, null);
        }*/
    } else {
        Log.e("TTS", "Initilization Failed");
    }
}

private void speakOut(String text) {
    tts.speak(text, TextToSpeech.QUEUE_FLUSH, null);
}

@Override
public void onUtteranceCompleted(String uttId) {
    stopSelf();
}

@Override
public void onDestroy() {
    if (tts != null) {
        tts.stop();
        tts.shutdown();
    }
    super.onDestroy();
}

@Override
public IBinder onBind(Intent intent) {
    return null;
}       

@Override
public void onStart(Intent intent, int startId) {
    super.onStart(intent, startId);     
    spokenText = intent.getStringExtra("spoken_txt");
}

}

并且从接收器我打电话给服务,比如

public class Receiver extends BroadcastReceiver {

    private static final String TAG = "SMSReceiver";

    @Override
    public void onReceive(Context context, Intent intent) {


for(int i=0; i<msgs.length; i++) {
....
 Intent intentTTS = new Intent(context, SMSTTSService.class);
                        intentTTS.putExtra("spoken_txt", msgBody);
                        context.startService(intentTTS);

}

但是即使我有循环,服务也只会执行一次。如何让我在循环中不止一次有声音?我做错了什么?

4

2 回答 2

3

我认为您想将 IntentService 类用于多个实例。

参考这个:Multiple IntentService or one Service

编辑:这是一个快速示例,显示有关 IntentService 的严格必要代码:

public class ExampleIntentService extends IntentService {
     private static final String TAG = ExampleIntentService.class.getName();

     public ExampleIntentService() {
          super(TAG);
     }

     @Override
     protected void onHandleIntent(Intent intent) {

          // The code you want to execute
     }
}

为了启动服务,您可以执行以下操作:

Intent intent = new Intent(Intent.ACTION_SYNC, null, context, ExampleIntentService.class);
        intent.putExtra(ExampleIntentService.EXTRA_DATA, "some data");
        context.startService(intent);

然后,在清单中添加:

<service android:name="your.package.services.ExampleIntentService" />

现在,如果您想了解更多详细信息并与 BroadcastReceiver 结合使用,我从 google 的第一个结果中找到了这些链接:

于 2012-08-14T10:59:05.137 回答
0

您的onStart()方法被多次调用,但它所做的只是将spokenText变量设置为传递的额外值。所有这一切都发生在说出第一个意图的时候。然后你关闭服务。

您可能想要做的是实现一个简单的队列。在onStart()方法中提取额外内容并将 speakText 添加到队列中。然后开始处理队列(如果尚未处理)。

处理队列时,删除队列中的第一个元素并开始说话。在该onUtteranceCompleted()方法中,删除队列中的第一个元素,如果有,则开始说出那个元素。当队列中没有元素时,停止服务。

应该管用。

于 2012-08-14T11:20:59.110 回答