Back to project page android-pdfview.
The source code is released under:
GNU General Public License
If you think the Android project android-pdfview listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.vudroid.pdfdroid.codec; /*from www .ja v a 2s. c om*/ import android.content.ContentResolver; import org.vudroid.core.VuDroidLibraryLoader; import org.vudroid.core.codec.CodecContext; import org.vudroid.core.codec.CodecDocument; public class PdfContext implements CodecContext { static { VuDroidLibraryLoader.load(); } public CodecDocument openDocument(String fileName) { return PdfDocument.openDocument(fileName, ""); } public void setContentResolver(ContentResolver contentResolver) { //TODO } public void recycle() { } }