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