pull/32/head
kunfei 5 years ago
parent dda07dcd7d
commit ecd9d4feb8
  1. 4
      app/src/main/java/io/legado/app/service/ReadAloudService.kt

@ -158,7 +158,7 @@ class ReadAloudService : BaseService(), TextToSpeech.OnInitListener, AudioManage
} }
} }
private fun newReadAloud(dataKey: String?, paly: Boolean) { private fun newReadAloud(dataKey: String?, play: Boolean) {
dataKey?.let { dataKey?.let {
textChapter = IntentDataHelp.getData(dataKey) as? TextChapter textChapter = IntentDataHelp.getData(dataKey) as? TextChapter
textChapter?.let { textChapter?.let {
@ -166,7 +166,7 @@ class ReadAloudService : BaseService(), TextToSpeech.OnInitListener, AudioManage
readAloudNumber = it.getReadLength(pageIndex) readAloudNumber = it.getReadLength(pageIndex)
contentList.clear() contentList.clear()
contentList.addAll(it.getUnRead(pageIndex).split("\n")) contentList.addAll(it.getUnRead(pageIndex).split("\n"))
if (paly) playTTS() if (play) playTTS()
} ?: stopSelf() } ?: stopSelf()
} ?: stopSelf() } ?: stopSelf()
} }

Loading…
Cancel
Save