Browse Source

PDFTool(Android) - flutter widget中崩溃bug

liuxiaolong 11 months ago
parent
commit
db7119c8da

+ 2 - 3
ComPDFKit_Tools/src/main/java/com/compdfkit/tools/common/pdf/CPDFDocumentFragment.java

@@ -793,8 +793,7 @@ public class CPDFDocumentFragment extends CBasicPDFFragment {
     }
 
     @Override
-    public void onDestroyView() {
-        super.onDestroyView();
+    public void onDestroy() {
         try {
             if (pdfView.getCPdfReaderView().getPDFDocument() != null) {
                 pdfView.getCPdfReaderView().getPDFDocument().close();
@@ -806,6 +805,6 @@ public class CPDFDocumentFragment extends CBasicPDFFragment {
         }catch (Exception e){
 
         }
-
+        super.onDestroy();
     }
 }