|
@@ -630,6 +630,7 @@ abstract class ReaderActivity :
|
|
|
// return Build.VERSION.SDK_INT < Build.VERSION_CODES.KITKAT
|
|
|
}
|
|
|
|
|
|
+ @SuppressLint("NewApi")
|
|
|
private fun showAllToolbars() {
|
|
|
if (isBelowKitkat()) {
|
|
|
val duration = ((1 - toolbar_readerActivity.alpha) * UI_ANIMATION_DURATION).toLong()
|
|
@@ -643,6 +644,7 @@ abstract class ReaderActivity :
|
|
|
isHidePdfPage = true
|
|
|
}
|
|
|
|
|
|
+ @SuppressLint("NewApi")
|
|
|
private fun hideAllToolbars() {
|
|
|
if (isBelowKitkat()) {
|
|
|
val duration = (toolbar_readerActivity.alpha * UI_ANIMATION_DURATION).toLong()
|
|
@@ -656,6 +658,7 @@ abstract class ReaderActivity :
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @SuppressLint("NewApi")
|
|
|
private fun hideTopLeftBottomToolbars() {
|
|
|
if (isBelowKitkat()) {
|
|
|
val duration = (toolbar_readerActivity.alpha * UI_ANIMATION_DURATION).toLong()
|