我希望我的android应用程序从我离开阅读的同一页面恢复

时间:2019-05-03 12:21:19

标签: java android

我创建了一个电子书应用,并将pdf保留在资产文件夹中。恢复我的应用程序从关闭它的同一页面开始时遇到问题。

.enableSwipe(true) // allows to block changing pages using swipe
                .swipeHorizontal(false)
                .enableDoubletap(true)
                .defaultPage(0)
                .enableAnnotationRendering(false) // render annotations (such as comments, colors or forms)
                .password(null)
                .scrollHandle(null)
                .enableAntialiasing(true) // improve rendering a little bit on low-res screens
                // spacing between pages in dp. To define spacing color, set view background
                .spacing(0)
                .pageFitPolicy(FitPolicy.WIDTH)
                .load();

0 个答案:

没有答案