优化代码

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, lineBottom: Float,
) { ) {
textLine.textChars.forEach { textChar -> textLine.textChars.forEach { textChar ->
val rectF = RectF(textChar.start, lineTop, textChar.end, lineBottom) ReadBook.book?.let { book ->
ImageProvider.getImage(ReadBook.book!!, val rectF = RectF(textChar.start, lineTop, textChar.end, lineBottom)
textPage.chapterIndex, ImageProvider.getImage(book, textPage.chapterIndex, textChar.charData, true)
textChar.charData, ?.let {
true)?.let { canvas.drawBitmap(it, null, rectF, null)
canvas.drawBitmap(it, null, rectF, null) }
} }
} }
} }

Loading…
Cancel
Save