This commit is contained in:
Horis 2023-12-23 23:06:06 +08:00
parent 8ad6702fa7
commit dc35700ad1

View File

@ -324,7 +324,12 @@ class PageView(context: Context) : FrameLayout(context) {
text = readProgress
}
}
tvTotalProgress1?.text = "${chapterIndex.plus(1)}/${chapterSize}"
tvTotalProgress1?.apply {
val progress = "${chapterIndex.plus(1)}/${chapterSize}"
if (text != progress) {
text = progress
}
}
tvPageAndTotal?.text = "${index.plus(1)}/$pageSize $readProgress"
}