pull/1903/head
kunfei 2 years ago
parent d0c6e3fb1c
commit b9adb1854f
  1. 4
      app/src/main/java/io/legado/app/ui/book/read/page/PageView.kt
  2. 3
      app/src/main/java/io/legado/app/ui/book/read/page/ReadView.kt
  3. 1
      app/src/main/java/io/legado/app/ui/book/read/page/delegate/HorizontalPageDelegate.kt

@ -230,6 +230,8 @@ class PageView(context: Context) : FrameLayout(context) {
val time = timeFormat.format(Date(System.currentTimeMillis()))
tvTimeBattery?.setBattery(battery, time)
tvTimeBatteryP?.text = "$time $battery%"
destroyDrawingCache()
buildDrawingCache()
}
fun setContent(textPage: TextPage, resetPageOffset: Boolean = true) {
@ -238,6 +240,8 @@ class PageView(context: Context) : FrameLayout(context) {
resetPageOffset()
}
binding.contentTextView.setContent(textPage)
destroyDrawingCache()
buildDrawingCache()
}
fun setContentDescription(content: String) {

@ -439,9 +439,6 @@ class ReadView(context: Context, attrs: AttributeSet) :
fun upPageAnim() {
isScroll = ReadBook.pageAnim() == 3
prevPage.isDrawingCacheEnabled = !isScroll
curPage.isDrawingCacheEnabled = !isScroll
nextPage.isDrawingCacheEnabled = !isScroll
ChapterProvider.upLayout()
when (ReadBook.pageAnim()) {
PageAnim.coverPageAnim -> if (pageDelegate !is CoverPageDelegate) {

@ -49,7 +49,6 @@ abstract class HorizontalPageDelegate(readView: ReadView) : PageDelegate(readVie
}
private fun onScroll(event: MotionEvent) {
val action: Int = event.action
val pointerUp =
action and MotionEvent.ACTION_MASK == MotionEvent.ACTION_POINTER_UP

Loading…
Cancel
Save