pull/1630/head
kunfei 3 years ago
parent 42ef4af9c0
commit 86186b54b5
  1. 18
      app/src/main/java/io/legado/app/ui/book/read/page/PageView.kt

@ -105,6 +105,15 @@ class PageView(context: Context) : FrameLayout(context) {
tvFooterLeft.tag = null
tvFooterMiddle.tag = null
tvFooterRight.tag = null
llHeader.isGone = when (ReadTipConfig.headerMode) {
1 -> false
2 -> true
else -> !ReadBookConfig.hideStatusBar
}
llFooter.isGone = when (ReadTipConfig.footerMode) {
1 -> true
else -> false
}
ReadTipConfig.apply {
tvHeaderLeft.isGone = tipHeaderLeft == none
tvHeaderRight.isGone = tipHeaderRight == none
@ -112,15 +121,6 @@ class PageView(context: Context) : FrameLayout(context) {
tvFooterLeft.isInvisible = tipFooterLeft == none
tvFooterRight.isGone = tipFooterRight == none
tvFooterMiddle.isGone = tipFooterMiddle == none
llHeader.isGone = when (headerMode) {
1 -> false
2 -> true
else -> !ReadBookConfig.hideStatusBar
}
llFooter.isGone = when (footerMode) {
1 -> true
else -> false
}
}
tvTitle = getTipView(ReadTipConfig.chapterTitle)?.apply {
tag = ReadTipConfig.chapterTitle

Loading…
Cancel
Save