|
@@ -382,11 +382,14 @@ class ReaderActivity : BaseActivity() {
|
|
|
|
|
|
binding.pageNumber.setComposeContent {
|
|
binding.pageNumber.setComposeContent {
|
|
val state by viewModel.state.collectAsState()
|
|
val state by viewModel.state.collectAsState()
|
|
|
|
+ val showPageNumber by viewModel.readerPreferences.showPageNumber().collectAsState()
|
|
|
|
|
|
- PageIndicatorText(
|
|
|
|
- currentPage = state.currentPage,
|
|
|
|
- totalPages = state.totalPages,
|
|
|
|
- )
|
|
|
|
|
|
+ if (!state.menuVisible && showPageNumber) {
|
|
|
|
+ PageIndicatorText(
|
|
|
|
+ currentPage = state.currentPage,
|
|
|
|
+ totalPages = state.totalPages,
|
|
|
|
+ )
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
binding.dialogRoot.setComposeContent {
|
|
binding.dialogRoot.setComposeContent {
|
|
@@ -554,10 +557,6 @@ class ReaderActivity : BaseActivity() {
|
|
bottomAnimation.applySystemAnimatorScale(this)
|
|
bottomAnimation.applySystemAnimatorScale(this)
|
|
binding.readerMenuBottom.startAnimation(bottomAnimation)
|
|
binding.readerMenuBottom.startAnimation(bottomAnimation)
|
|
}
|
|
}
|
|
-
|
|
|
|
- if (readerPreferences.showPageNumber().get()) {
|
|
|
|
- config?.setPageNumberVisibility(false)
|
|
|
|
- }
|
|
|
|
} else {
|
|
} else {
|
|
if (readerPreferences.fullscreen().get()) {
|
|
if (readerPreferences.fullscreen().get()) {
|
|
windowInsetsController.hide(WindowInsetsCompat.Type.systemBars())
|
|
windowInsetsController.hide(WindowInsetsCompat.Type.systemBars())
|
|
@@ -580,10 +579,6 @@ class ReaderActivity : BaseActivity() {
|
|
bottomAnimation.applySystemAnimatorScale(this)
|
|
bottomAnimation.applySystemAnimatorScale(this)
|
|
binding.readerMenuBottom.startAnimation(bottomAnimation)
|
|
binding.readerMenuBottom.startAnimation(bottomAnimation)
|
|
}
|
|
}
|
|
-
|
|
|
|
- if (readerPreferences.showPageNumber().get()) {
|
|
|
|
- config?.setPageNumberVisibility(true)
|
|
|
|
- }
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -636,9 +631,8 @@ class ReaderActivity : BaseActivity() {
|
|
|
|
|
|
private fun showReadingModeToast(mode: Int) {
|
|
private fun showReadingModeToast(mode: Int) {
|
|
try {
|
|
try {
|
|
- val strings = resources.getStringArray(R.array.viewers_selector)
|
|
|
|
readingModeToast?.cancel()
|
|
readingModeToast?.cancel()
|
|
- readingModeToast = toast(strings[mode])
|
|
|
|
|
|
+ readingModeToast = toast(ReadingModeType.fromPreference(mode).stringRes)
|
|
} catch (e: ArrayIndexOutOfBoundsException) {
|
|
} catch (e: ArrayIndexOutOfBoundsException) {
|
|
logcat(LogPriority.ERROR) { "Unknown reading mode: $mode" }
|
|
logcat(LogPriority.ERROR) { "Unknown reading mode: $mode" }
|
|
}
|
|
}
|
|
@@ -892,10 +886,6 @@ class ReaderActivity : BaseActivity() {
|
|
}
|
|
}
|
|
.launchIn(lifecycleScope)
|
|
.launchIn(lifecycleScope)
|
|
|
|
|
|
- readerPreferences.showPageNumber().changes()
|
|
|
|
- .onEach(::setPageNumberVisibility)
|
|
|
|
- .launchIn(lifecycleScope)
|
|
|
|
-
|
|
|
|
readerPreferences.trueColor().changes()
|
|
readerPreferences.trueColor().changes()
|
|
.onEach(::setTrueColor)
|
|
.onEach(::setTrueColor)
|
|
.launchIn(lifecycleScope)
|
|
.launchIn(lifecycleScope)
|
|
@@ -945,13 +935,6 @@ class ReaderActivity : BaseActivity() {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- /**
|
|
|
|
- * Sets the visibility of the bottom page indicator according to [visible].
|
|
|
|
- */
|
|
|
|
- fun setPageNumberVisibility(visible: Boolean) {
|
|
|
|
- binding.pageNumber.isVisible = visible
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
/**
|
|
/**
|
|
* Sets the 32-bit color mode according to [enabled].
|
|
* Sets the 32-bit color mode according to [enabled].
|
|
*/
|
|
*/
|