在android中的视图上呈现pdf的最佳方法

时间:2013-03-21 06:27:58

标签: android pdf android-droidtext

我知道有许多图书馆可供使用,不适合像mupdf这样的商业用途。我的公司是一家初创公司,不能花很多钱。我正在制作杂志app.Can有人建议好开 - 用于渲染单个pdf的源库,或者如果不可能,我更喜欢付费的哪一个?提前致谢

1 个答案:

答案 0 :(得分:0)

您可以将google文档用于webview。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>

<WebView
android:id="@+id/wv"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/> 

 WebView wv= (WebView) findViewById(R.id.wv);
 wv.setVerticalScrollBarEnabled(true);
 wv.setHorizontalScrollBarEnabled(true);
 wv.getSettings().setBuiltInZoomControls(true);
 wv.getSettings().setJavaScriptEnabled(true);
 wv.setWebViewClient(new WebViewClient());
 wv.loadUrl("https://docs.google.com/file/d/0B8ZDVNCvRWK8c3YzQVFaWjg1bEU/edit")//pdf uploaded to google docs. Some cases requires users to login and requires permission of the owner of the doc.

您可以使用意图。您的手机必须有PDF阅读器应用程序。

  File file = new File("/sdcard/example.pdf");
            if (file.exists()) {
                Uri path = Uri.fromFile(file);
                Intent intent = new Intent(Intent.ACTION_VIEW);
                intent.setDataAndType(path, "application/pdf");
                intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);

                try {
                    startActivity(intent);
                } 
                catch (ActivityNotFoundException e) {
                    Toast.makeText(OpenPdf.this, 
                        "No Application Available to View PDF", 
                        Toast.LENGTH_SHORT).show();
                }

http://code.google.com/p/apv/source/checkout。 APV PDF查看器

http://code.google.com/p/apdfviewer/。 APDF Viewer。