Browse Source

Add ReaderActivity#onClickCloseButton

Wayne 4 years ago
parent
commit
f04459b605
1 changed files with 9 additions and 1 deletions
  1. 9 1
      src/main/java/com/kdanmobile/reader/ReaderActivity.kt

+ 9 - 1
src/main/java/com/kdanmobile/reader/ReaderActivity.kt

@@ -74,6 +74,10 @@ abstract class ReaderActivity :
     abstract fun providePdfThumbDialogFragment(): PdfThumbDialogFragment
     abstract fun isIBonPrintEnabled(): Boolean
 
+    /**
+     * return true = intercept, false = not intercept (same as touch event)
+     */
+    open fun onClickCloseButton(): Boolean { return false }
     open fun isBottomBarKdanCloudBtnVisible(): Boolean { return true }
     open fun insertToRecentDocumentList(filename: String) {}
     open fun saveCurrentPageIndex(filename: String, currentPage: Int) {}
@@ -701,7 +705,11 @@ abstract class ReaderActivity :
     }
 
     private fun setupToolbar() {
-        toolbar_readerActivity.setNavigationOnClickListener { finish() }
+        toolbar_readerActivity.setNavigationOnClickListener {
+            if (!onClickCloseButton()) {
+                finish()
+            }
+        }
         toolbar_readerActivity.setOnMenuItemClickListener {
             when (it.itemId) {
                 R.id.item_reader_bookmark -> onClickBookmark()