当前位置: 首页>>代码示例>>Java>>正文


Java DocumentSource类代码示例

本文整理汇总了Java中com.github.barteksc.pdfviewer.source.DocumentSource的典型用法代码示例。如果您正苦于以下问题:Java DocumentSource类的具体用法?Java DocumentSource怎么用?Java DocumentSource使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


DocumentSource类属于com.github.barteksc.pdfviewer.source包,在下文中一共展示了DocumentSource类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: load

import com.github.barteksc.pdfviewer.source.DocumentSource; //导入依赖的package包/类
private void load(DocumentSource docSource, String password, OnLoadCompleteListener onLoadCompleteListener, OnErrorListener onErrorListener, int[] userPages) {

        if (!recycled) {
            throw new IllegalStateException("Don't call load on a PDF View without recycling it first.");
        }

        // Manage UserPages if not null
        if (userPages != null) {
            this.originalUserPages = userPages;
            this.filteredUserPages = ArrayUtils.deleteDuplicatedPages(originalUserPages);
            this.filteredUserPageIndexes = ArrayUtils.calculateIndexesInDuplicateArray(originalUserPages);
        }

        this.onLoadCompleteListener = onLoadCompleteListener;
        this.onErrorListener = onErrorListener;

        int firstPageIdx = 0;
        if (originalUserPages != null) {
            firstPageIdx = originalUserPages[0];
        }

        recycled = false;
        // Start decoding document
        decodingAsyncTask = new DecodingAsyncTask(docSource, password, this, pdfiumCore, firstPageIdx);
        decodingAsyncTask.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
    }
 
开发者ID:barteksc,项目名称:AndroidPdfViewerV2,代码行数:27,代码来源:PDFView.java

示例2: load

import com.github.barteksc.pdfviewer.source.DocumentSource; //导入依赖的package包/类
private void load(DocumentSource docSource, String password, OnLoadCompleteListener onLoadCompleteListener, OnErrorListener onErrorListener, int[] userPages) {

        if (!recycled) {
            throw new IllegalStateException("Don't call load on a PDF View without recycling it first.");
        }

        // Manage UserPages if not null
        if (userPages != null) {
            this.originalUserPages = userPages;
            this.filteredUserPages = ArrayUtils.deleteDuplicatedPages(originalUserPages);
            this.filteredUserPageIndexes = ArrayUtils.calculateIndexesInDuplicateArray(originalUserPages);
        }

        this.onLoadCompleteListener = onLoadCompleteListener;
        this.onErrorListener = onErrorListener;

        recycled = false;
        // Start decoding document
        decodingAsyncTask = new DecodingAsyncTask(docSource, password, this, pdfiumCore);
        decodingAsyncTask.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);

    }
 
开发者ID:barteksc,项目名称:AndroidPdfViewerV1,代码行数:23,代码来源:PDFView.java

示例3: DecodingAsyncTask

import com.github.barteksc.pdfviewer.source.DocumentSource; //导入依赖的package包/类
DecodingAsyncTask(DocumentSource docSource, String password, PDFView pdfView, PdfiumCore pdfiumCore, int firstPageIdx) {
    this.docSource = docSource;
    this.firstPageIdx = firstPageIdx;
    this.cancelled = false;
    this.pdfView = pdfView;
    this.password = password;
    this.pdfiumCore = pdfiumCore;
    context = pdfView.getContext();
}
 
开发者ID:barteksc,项目名称:AndroidPdfViewerV2,代码行数:10,代码来源:DecodingAsyncTask.java

示例4: DecodingAsyncTask

import com.github.barteksc.pdfviewer.source.DocumentSource; //导入依赖的package包/类
public DecodingAsyncTask(DocumentSource docSource, String password, PDFView pdfView, PdfiumCore pdfiumCore) {
    this.docSource = docSource;
    this.cancelled = false;
    this.pdfView = pdfView;
    this.password = password;
    this.pdfiumCore = pdfiumCore;
    context = pdfView.getContext();
}
 
开发者ID:barteksc,项目名称:AndroidPdfViewerV1,代码行数:9,代码来源:DecodingAsyncTask.java

示例5: load

import com.github.barteksc.pdfviewer.source.DocumentSource; //导入依赖的package包/类
private void load(DocumentSource docSource, String password, int[] userPages) {

        if (!recycled) {
            throw new IllegalStateException("Don't call load on a PDF View without recycling it first.");
        }

        recycled = false;
        // Start decoding document
        decodingAsyncTask = new DecodingAsyncTask(docSource, password, userPages, this, pdfiumCore);
        decodingAsyncTask.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
    }
 
开发者ID:barteksc,项目名称:AndroidPdfViewer,代码行数:12,代码来源:PDFView.java

示例6: DecodingAsyncTask

import com.github.barteksc.pdfviewer.source.DocumentSource; //导入依赖的package包/类
DecodingAsyncTask(DocumentSource docSource, String password, int[] userPages, PDFView pdfView, PdfiumCore pdfiumCore) {
    this.docSource = docSource;
    this.userPages = userPages;
    this.cancelled = false;
    this.pdfView = pdfView;
    this.password = password;
    this.pdfiumCore = pdfiumCore;
}
 
开发者ID:barteksc,项目名称:AndroidPdfViewer,代码行数:9,代码来源:DecodingAsyncTask.java

示例7: fromSource

import com.github.barteksc.pdfviewer.source.DocumentSource; //导入依赖的package包/类
/**
 * Use custom source as pdf source
 */
public Configurator fromSource(DocumentSource docSource) {
    return new Configurator(docSource);
}
 
开发者ID:barteksc,项目名称:AndroidPdfViewerV2,代码行数:7,代码来源:PDFView.java

示例8: Configurator

import com.github.barteksc.pdfviewer.source.DocumentSource; //导入依赖的package包/类
private Configurator(DocumentSource documentSource) {
    this.documentSource = documentSource;
}
 
开发者ID:barteksc,项目名称:AndroidPdfViewerV2,代码行数:4,代码来源:PDFView.java

示例9: fromSource

import com.github.barteksc.pdfviewer.source.DocumentSource; //导入依赖的package包/类
/** Use custom source as pdf source */
public Configurator fromSource(DocumentSource docSource) {
    return new Configurator(docSource);
}
 
开发者ID:barteksc,项目名称:AndroidPdfViewer,代码行数:5,代码来源:PDFView.java


注:本文中的com.github.barteksc.pdfviewer.source.DocumentSource类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。