java 调用 tts,Android使用系统SystemTTS简单实现语音播报

/**

* 系统播报类,部分手机不支持中文播报

*/

@SuppressLint("NewApi")

public class SystemTTS extends UtteranceProgressListener implements TTS, OnUtteranceCompletedListener {

private Context mContext;

private static SystemTTS singleton;

private TextToSpeech textToSpeech; // 系统语音播报类

private boolean isSuccess = true;

public static SystemTTS getInstance(Context context) {

if (singleton == null) {

synchronized (SystemTTS.class) {

if (singleton == null) {

singleton = new SystemTTS(context);

}

}

}

return singleton;

}

private SystemTTS(Context context) {

this.mContext = context.getApplicationContext();

textToSpeech = new TextToSpeech(mContext, new TextToSpeech.OnInitListener() {

@Override

public void onInit(int i) {

//系统语音初始化成功

if (i == TextToSpeech.SUCCESS) {

int result = textToSpeech.setLanguage(Locale.CHINA);

textToSpeech.setPitch(1.0f);// 设置音调,值越大声音越尖(女生),值越小则变成男声,1.0是常规

textToSpeech.setSpeechRate(1.0f);

textToSpeech.setOnUtteranceProgressListener(SystemTTS.this);

textToSpeech.setOnUtteranceCompletedListener(SystemTTS.this);

if (result == TextToSpeech.LANG_MISSING_DATA

|| result == TextToSpeech.LANG_NOT_SUPPORTED) {

//系统不支持中文播报

isSuccess = false;

}

}

}

});

}

public void playText(String playText) {

if (!isSuccess) {

return;

}

if (textToSpeech != null) {

textToSpeech.speak(playText,

TextToSpeech.QUEUE_ADD, null, null);

}

}

public void stopSpeak() {

if (textToSpeech != null) {

textToSpeech.stop();

}

}

//播报完成回调

@Override

public void onUtteranceCompleted(String utteranceId) {

}

@Override

public void onStart(String utteranceId) {

}

@Override

public void onDone(String utteranceId) {

}

@Override

public void onError(String utteranceId) {

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值