本文整理汇总了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);
}
示例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);
}
示例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();
}
示例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();
}
示例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);
}
示例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;
}
示例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);
}
示例8: Configurator
import com.github.barteksc.pdfviewer.source.DocumentSource; //导入依赖的package包/类
private Configurator(DocumentSource documentSource) {
this.documentSource = documentSource;
}
示例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);
}