我无法弄清楚如何在Android应用程序中显示PDF文件。到目前为止,我发现可以使用Android默认应用启动Intent
并打开PDF。但我想直接在我的应用程序中查看PDF文件而不退出。我的布局中有一个页眉和一个页脚 - 我想在两者之间打开PDF。我还从github.com找到了一个PdfReader.jar
文件,但它在一个新活动中打开了PDF。
答案 0 :(得分:19)
您可以从此处下载资源(Display PDF file inside my android application)
在gradle文件中添加此依赖项:
compile 'com.github.barteksc:android-pdf-viewer:2.0.3'
<强> activity_main.xml中强>
<RelativeLayout android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff"
xmlns:android="http://schemas.android.com/apk/res/android" >
<TextView
android:layout_width="match_parent"
android:layout_height="40dp"
android:background="@color/colorPrimaryDark"
android:text="View PDF"
android:textColor="#ffffff"
android:id="@+id/tv_header"
android:textSize="18dp"
android:gravity="center"></TextView>
<com.github.barteksc.pdfviewer.PDFView
android:id="@+id/pdfView"
android:layout_below="@+id/tv_header"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</RelativeLayout>
<强> MainActivity.java 强>
package pdfviewer.pdfviewer;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import com.github.barteksc.pdfviewer.PDFView;
import com.github.barteksc.pdfviewer.listener.OnLoadCompleteListener;
import com.github.barteksc.pdfviewer.listener.OnPageChangeListener;
import com.github.barteksc.pdfviewer.scroll.DefaultScrollHandle;
import com.shockwave.pdfium.PdfDocument;
import java.util.List;
public class MainActivity extends Activity implements OnPageChangeListener,OnLoadCompleteListener{
private static final String TAG = MainActivity.class.getSimpleName();
public static final String SAMPLE_FILE = "android_tutorial.pdf";
PDFView pdfView;
Integer pageNumber = 0;
String pdfFileName;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
pdfView= (PDFView)findViewById(R.id.pdfView);
displayFromAsset(SAMPLE_FILE);
}
private void displayFromAsset(String assetFileName) {
pdfFileName = assetFileName;
pdfView.fromAsset(SAMPLE_FILE)
.defaultPage(pageNumber)
.enableSwipe(true)
.swipeHorizontal(false)
.onPageChange(this)
.enableAnnotationRendering(true)
.onLoad(this)
.scrollHandle(new DefaultScrollHandle(this))
.load();
}
@Override
public void onPageChanged(int page, int pageCount) {
pageNumber = page;
setTitle(String.format("%s %s / %s", pdfFileName, page + 1, pageCount));
}
@Override
public void loadComplete(int nbPages) {
PdfDocument.Meta meta = pdfView.getDocumentMeta();
printBookmarksTree(pdfView.getTableOfContents(), "-");
}
public void printBookmarksTree(List<PdfDocument.Bookmark> tree, String sep) {
for (PdfDocument.Bookmark b : tree) {
Log.e(TAG, String.format("%s %s, p %d", sep, b.getTitle(), b.getPageIdx()));
if (b.hasChildren()) {
printBookmarksTree(b.getChildren(), sep + "-");
}
}
}
}
答案 1 :(得分:6)
也许您可以将MuPdf集成到您的应用程序中。我在此描述了如何执行此操作:Integrate MuPDF Reader in an app
答案 2 :(得分:3)
我认为你不能轻易做到这一点。你应该在这里考虑这个答案:
How can I display a pdf document into a Webview?
基本上你可以看到一个pdf,如果它是通过谷歌文件在线托管,但如果你在你的设备中有它,则不会(但你需要一个独立的阅读器)
答案 3 :(得分:3)
强烈建议您查看能够在标准WebView组件中呈现PDF文档的PDF.js。
答案 4 :(得分:2)
@property (nonatomic, assign, getter=isLoggedIn) BOOL loggedIn;
如需更多参考,请点击此处http://androiddhina.blogspot.in/2015/07/how-to-view-pdf-in-android-application.html
答案 5 :(得分:0)
public class MainActivity extends AppCompatActivity {
WebView webview;
ProgressBar progressbar;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
webview = (WebView)findViewById(R.id.webview);
progressbar = (ProgressBar) findViewById(R.id.progressbar);
webview.getSettings().setJavaScriptEnabled(true);
String filename ="http://www3.nd.edu/~cpoellab/teaching/cse40816/android_tutorial.pdf";
webview.loadUrl("http://docs.google.com/gview?embedded=true&url=" + filename);
webview.setWebViewClient(new WebViewClient() {
public void onPageFinished(WebView view, String url) {
// do your stuff here
progressbar.setVisibility(View.GONE);
}
});
}
}
答案 6 :(得分:0)
使用PdfRenderer找到了这个解决方案。
答案 7 :(得分:0)
这是没有任何第三方库的完美解决方案。
Rendering a PDF Document in Android Activity/Fragment (Using PdfRenderer)
答案 8 :(得分:-2)
您可以使用webview在应用程序中显示pdf,为此您必须:
Many pdf to html online converter available.
示例:
consent_web = (WebView) findViewById(R.id.consentweb);
consent_web.getSettings().setLoadWithOverviewMode(true);
consent_web.getSettings().setUseWideViewPort(true);
consent_web.loadUrl("file:///android_asset/spacs_html.html");