优化代码

pull/357/head
gedoor 4 years ago
parent ff21aee1a4
commit 563a38e4c1
  1. 13
      app/src/main/java/io/legado/app/ui/book/read/page/ContentTextView.kt

@ -159,13 +159,14 @@ class ContentTextView(context: Context, attrs: AttributeSet?) : View(context, at
lineBottom: Float,
) {
textLine.textChars.forEach { textChar ->
val rectF = RectF(textChar.start, lineTop, textChar.end, lineBottom)
ImageProvider.getImage(ReadBook.book!!,
textPage.chapterIndex,
textChar.charData,
true)?.let {
canvas.drawBitmap(it, null, rectF, null)
ReadBook.book?.let { book ->
val rectF = RectF(textChar.start, lineTop, textChar.end, lineBottom)
ImageProvider.getImage(book, textPage.chapterIndex, textChar.charData, true)
?.let {
canvas.drawBitmap(it, null, rectF, null)
}
}
}
}

Loading…
Cancel
Save