This commit is contained in:
kunfei
2022-02-05 09:33:17 +08:00
parent 313ca3c2d3
commit f614182b07
2 changed files with 9 additions and 7 deletions
@@ -73,16 +73,18 @@ class TTSReadAloudService : BaseReadAloudService(), TextToSpeech.OnInitListener
ReadBook.readAloud()
} else {
super.play()
execute {
kotlin.runCatching {
MediaHelp.playSilentSound(this@TTSReadAloudService)
}.onFinally {
textToSpeech?.let {
textToSpeech!!.let {
it.speak("", TextToSpeech.QUEUE_FLUSH, null, null)
for (i in nowSpeak until contentList.size) {
val text = contentList[i].replace(AppPattern.notReadAloudRegex, "")
it.speak(text, TextToSpeech.QUEUE_ADD, null, AppConst.APP_TAG + i)
}
}
}.onFailure {
AppLog.put("tts朗读出错", it)
toastOnUi(it.localizedMessage)
}
}
}
@@ -26,9 +26,9 @@ fun Context.toastOnUi(message: CharSequence?) {
runOnUI {
kotlin.runCatching {
if (toast == null) {
toast = Toast.makeText(this, message, Toast.LENGTH_SHORT)
toast = Toast.makeText(this, message.toString(), Toast.LENGTH_SHORT)
} else {
toast?.setText(message)
toast?.setText(message.toString())
toast?.duration = Toast.LENGTH_SHORT
}
toast?.show()
@@ -54,9 +54,9 @@ fun Context.longToastOnUi(message: CharSequence?) {
runOnUI {
kotlin.runCatching {
if (toast == null) {
toast = Toast.makeText(this, message, Toast.LENGTH_LONG)
toast = Toast.makeText(this, message.toString(), Toast.LENGTH_LONG)
} else {
toast?.setText(message)
toast?.setText(message.toString())
toast?.duration = Toast.LENGTH_LONG
}
toast?.show()