This commit is contained in:
kunfei
2022-08-19 19:53:37 +08:00
parent 5fe9ae68a3
commit 391318b317
@@ -566,12 +566,14 @@ class ReadView(context: Context, attrs: AttributeSet) :
*/
fun aloudStartSelect() {
val selectStartPos = curPage.selectStartPos
var pagePos = selectStartPos.relativePagePos
val line = selectStartPos.lineIndex
val column = selectStartPos.charIndex
if (selectStartPos.relativePagePos > 0) {
while (pagePos > 0) {
if (!ReadBook.moveToNextPage()) {
ReadBook.moveToNextChapter(false)
}
pagePos--
}
val startPos = curPage.textPage.getPosByLineColumn(line, column)
ReadAloud.play(context, startPos = startPos)