PDF文書をWebviewに表示するにはどうすればよいですか?


115

WebビューにPDFコンテンツを表示したい。これが私のコードです:

WebView webview = new WebView(this); 
setContentView(webview);
webview.getSettings().setJavaScriptEnabled(true); 
webview.loadUrl("http://www.adobe.com/devnet/acrobat/pdfs/pdf_open_parameters.pdf");

画面に何も表示されません。私もインターネット許可を設定しました。

回答:


170

Google PDF Viewerを使用して、PDFをオンラインで読むことができます。

WebView webview = (WebView) findViewById(R.id.webview);
webview.getSettings().setJavaScriptEnabled(true); 
String pdf = "http://www.adobe.com/devnet/acrobat/pdfs/pdf_open_parameters.pdf";
webview.loadUrl("https://drive.google.com/viewerng/viewer?embedded=true&url=" + pdf);

1
こんにちは、今までPDFを読みたい場合は、AndroidフォンにPDFリーダーをインストールするか、webviewを使用してPDFファイルをオンラインでレンダリングする必要があります。申し訳ありませんが、2番目の方法を使用してPDFをオフラインで読み取ることはできません。
アンチカフェ

45
2日間持続的にテストした後、Googleのドキュメントで「」というエラーが発生しましたYou've reached the bandwidth limit for viewing or downloading files that aren't in Google Docs format....。したがって、信頼性が低いようです。
Shobhit Puri 2014

4
ドキュメントのURLがドライブにリダイレクトされるようになりました: " drive.google.com/viewerng/viewer?embedded=true&url= "
Murphy

31
この解決策はひどいです。あなたの多くがこれほど醜いものをあなたのアプリに入れることを考えているという事実は私を心配しています。このページはデスクトップ用に設計されています。このサイトは明らかにデスクトップ向けに最適化されています。これをモバイルで使用することは、良いモバイル体験ではありません。
clu 2016

3
オフラインの場合はどうなりますか?
yerlilbilgin

36

表示のみのURLを使用する場合、ユーザーはGoogleアカウントへのログインを要求されません。

https://docs.google.com/viewer?url=http://my.domain.com/yourPdfUrlHere.pdf

9

google docsを使用してpdfを開くことは、ユーザーエクスペリエンスの観点から悪い考えです。それは本当に遅く、反応しません。

API 21後のソリューション

API 21以降、PDFをビットマップに変換するのに役立つPdfRendererがあります。私はそれを使ったことがありませんが、簡単なようです。

あらゆるAPIレベルのソリューション

他の解決策は、PDFをダウンロードし、それをインテント経由で専用のPDFアプリに渡すことです。特にこの機能がアプリの中心ではない場合、高速で優れたユーザーエクスペリエンス。

このコードを使用してPDFをダウンロードして開きます

public class PdfOpenHelper {

public static void openPdfFromUrl(final String pdfUrl, final Activity activity){
    Observable.fromCallable(new Callable<File>() {
        @Override
        public File call() throws Exception {
            try{
                URL url = new URL(pdfUrl);
                URLConnection connection = url.openConnection();
                connection.connect();

                // download the file
                InputStream input = new BufferedInputStream(connection.getInputStream());
                File dir = new File(activity.getFilesDir(), "/shared_pdf");
                dir.mkdir();
                File file = new File(dir, "temp.pdf");
                OutputStream output = new FileOutputStream(file);

                byte data[] = new byte[1024];
                long total = 0;
                int count;
                while ((count = input.read(data)) != -1) {
                    total += count;
                    output.write(data, 0, count);
                }

                output.flush();
                output.close();
                input.close();
                return file;
            } catch (IOException e) {
                e.printStackTrace();
            }
            return null;
        }
    })
            .subscribeOn(Schedulers.io())
            .observeOn(AndroidSchedulers.mainThread())
            .subscribe(new Subscriber<File>() {
                @Override
                public void onCompleted() {

                }

                @Override
                public void onError(Throwable e) {

                }

                @Override
                public void onNext(File file) {
                    String authority = activity.getApplicationContext().getPackageName() + ".fileprovider";
                    Uri uriToFile = FileProvider.getUriForFile(activity, authority, file);

                    Intent shareIntent = new Intent(Intent.ACTION_VIEW);
                    shareIntent.setDataAndType(uriToFile, "application/pdf");
                    shareIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
                    if (shareIntent.resolveActivity(activity.getPackageManager()) != null) {
                        activity.startActivity(shareIntent);
                    }
                }
            });
}

}

インテントを機能させるには、FileProviderを作成して、受信側アプリにファイルを開く権限を付与する必要があります。

実装方法は次のとおりです。マニフェストで:

    <provider
        android:name="android.support.v4.content.FileProvider"
        android:authorities="${applicationId}.fileprovider"
        android:exported="false"
        android:grantUriPermissions="true">

        <meta-data
            android:name="android.support.FILE_PROVIDER_PATHS"
            android:resource="@xml/file_paths" />

    </provider>

最後に、resources folerにfile_paths.xmlファイルを作成します

<?xml version="1.0" encoding="utf-8"?>
<paths>
    <files-path name="shared_pdf" path="shared_pdf"/>
</paths>

これが役立つことを願って=)


1
shared_pdfはアセットの下のディレクトリですか?
codezombie 2017

1
これは素晴らしいソリューションです。
codezombie 2017

9

このコードを使用してください:

private void pdfOpen(String fileUrl){

        webView.getSettings().setJavaScriptEnabled(true);
        webView.getSettings().setPluginState(WebSettings.PluginState.ON);

        //---you need this to prevent the webview from
        // launching another browser when a url
        // redirection occurs---
        webView.setWebViewClient(new Callback());

        webView.loadUrl(
                "http://docs.google.com/gview?embedded=true&url=" + fileUrl);

    }

    private class Callback extends WebViewClient {
        @Override
        public boolean shouldOverrideUrlLoading(
                WebView view, String url) {
            return (false);
        }
    }

@Athira kidilam answer
Samwinishere Here

7

ここで、progressDialogをロードします。それ以外の場合はブラウザで強制的に開くようにWebClientを指定する必要があります。

final ProgressDialog pDialog = new ProgressDialog(context);
    pDialog.setTitle(context.getString(R.string.app_name));
    pDialog.setMessage("Loading...");
    pDialog.setIndeterminate(false);
    pDialog.setCancelable(false);
    WebView webView = (WebView) rootView.findViewById(R.id.web_view);
    webView.getSettings().setJavaScriptEnabled(true);
    webView.setWebViewClient(new WebViewClient() {
        @Override
        public void onPageStarted(WebView view, String url, Bitmap favicon) {
            super.onPageStarted(view, url, favicon);
            pDialog.show();
        }

        @Override
        public void onPageFinished(WebView view, String url) {
            super.onPageFinished(view, url);
            pDialog.dismiss();
        }
    });
    String pdf = "http://www.adobe.com/devnet/acrobat/pdfs/pdf_open_parameters.pdf";
    webView.loadUrl("https://drive.google.com/viewerng/viewer?embedded=true&url=" + pdf);

WebviewでPDFの検索機能を有効にするにはどうすればよいですか
Anant Shah

4

Mozilla pdf.jsプロジェクトを使用できます。基本的にそれはあなたにPDFを表示します。彼らの例を見てみましょう。

私はブラウザ(デスクトップとモバイル)でのみ使用し、問題なく動作しています。


こんにちは@pauloアンドロイドでこれを使用する方法についての例を教えていただけますか?
Khalid ElSayed 2014年

1
@KhalidElSayed buteloがあなたの目的で成功したと思います:stackoverflow.com/a/21383356/505893
青みがかった

pdf.jsをローカルで使用できますか?つまり、インターネットにアクセスせずにローカルサーバーと通信するLANで使用されるアプリケーションで使用できますか?
codezombie 2017

2

実際、すべてのソリューションはかなり複雑で、本当にシンプルなソリューションを見つけました(すべてのSDKバージョンで使用できるかどうかはわかりません)。ユーザーがドキュメントを表示して保存/共有できるプレビューウィンドウでPDFドキュメントを開きます。

webView.setDownloadListener(DownloadListener { url, userAgent, contentDisposition, mimetype, contentLength ->
     val i = Intent(Intent.ACTION_QUICK_VIEW)
     i.data = Uri.parse(url)
     if (i.resolveActivity(getPackageManager()) != null) {
            startActivity(i)
     } else {
            val i2 = Intent(Intent.ACTION_VIEW)
            i2.data = Uri.parse(url)
            startActivity(i2)
     }
})

(コトリン)


1
DownloadListenerクラスのサンプルコードを教えてください
mohammedragabmohammedborik

@mohammedragabmohammedborik DownloadListenerクラスはAndroidに含まれているため、上記のコードを実行するために追加のクラスは必要ありません。
Dion

2
ACTION_QUICK_VIEWは、android N以降でのみサポートされています。
pumpkee

@pumpkeeそうです、それが私の場合問題を引き起こしました。上記のコードを追加して、クイックビューが使用可能かどうかを確認します。それ以外の場合は、ブラウザで開かれます。
ディオン

0

ここからソースコードをダウンロードします(webview androidでPDFを開きます)

activity_main.xml

<RelativeLayout android:layout_width="match_parent"
                android:layout_height="match_parent"
                xmlns:android="http://schemas.android.com/apk/res/android">

    <WebView
        android:layout_width="match_parent"
        android:background="#ffffff"
        android:layout_height="match_parent"
        android:id="@+id/webview"></WebView>
</RelativeLayout>

MainActivity.java

package com.pdfwebview;

import android.app.ProgressDialog;
import android.graphics.Bitmap;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.webkit.WebView;
import android.webkit.WebViewClient;

public class MainActivity extends AppCompatActivity {

    WebView webview;
    ProgressDialog pDialog;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

    init();
    listener();
    }

    private void init() {

        webview = (WebView) findViewById(R.id.webview);
        webview.getSettings().setJavaScriptEnabled(true);

        pDialog = new ProgressDialog(MainActivity.this);
        pDialog.setTitle("PDF");
        pDialog.setMessage("Loading...");
        pDialog.setIndeterminate(false);
        pDialog.setCancelable(false);
        webview.loadUrl("https://drive.google.com/file/d/0B534aayZ5j7Yc3RhcnRlcl9maWxl/view");

    }

    private void listener() {
        webview.setWebViewClient(new WebViewClient() {
            @Override
            public void onPageStarted(WebView view, String url, Bitmap favicon) {
                super.onPageStarted(view, url, favicon);
                pDialog.show();
            }

            @Override
            public void onPageFinished(WebView view, String url) {
                super.onPageFinished(view, url);
                pDialog.dismiss();
            }
        });
    }
}

デバイスのSDカードにあるようなPDFではないGoogleドライブファイルを開いています
OneCricketeer

はいこのデモでは、GoogleドライブのPDFファイルを表示しています。SDカードからPDFを表示したい場合は、このデモを確認してください。 deepshikhapuri.wordpress.com/2017/04/24/…–
Deepshikha Puri

0

これは、コメント言及されたエラーが発生する前にグーグルが許可する実際の使用制限です。ユーザーがアプリで開くのが一生に一度のPDFである場合、私は完全に安全だと感じます。Android 5.0 / LollipopからAndroidの組み込みフレームワークを使用するネイティブアプローチに従うことをお勧めしますが、これはPDFRendererと呼ばれます


「PDFRenderer」へのリンクが壊れています。
ネイト

@Nateこれを私の注目に導いてくれてありがとう私は本当にそれを具体化し、リンクを更新しました。PDFレンダラーはネイティブのAndroid APIであるため、Webサイト内で移動したため、将来、更新されたリンクが再度壊れると、 Android開発者のWebサイトで検索するのが最適です。
マイティアン

0
String webviewurl = "http://test.com/testing.pdf";
webView.getSettings().setJavaScriptEnabled(true); 
if(webviewurl.contains(".pdf")){
    webviewurl = "http://docs.google.com/gview?embedded=true&url=" + webviewurl;        }
webview.loadUrl(webviewurl);
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.