1

我想使用以下代码在 Webview 中查看 pdf 我可以查看它,但问题是它会打开一个占据整个屏幕的新视图。我希望​​查看的 pdf 应该只在 Webview 中打开而不是在新窗口中。我正在使用以下代码:

        webView = (WebView) findViewById(R.id.webView);
        webView.getSettings().setJavaScriptEnabled(true);
        webView.getSettings().setPluginsEnabled(true);
        String pdf = "http://178.239.16.28/fzs/sites/default/files/dokumenti-vijesti/sample.pdf";
        String url = "http://docs.google.com/gview?embedded=true&url=" + pdf;
        webView.loadUrl(url);

以下是我的 xml 文件:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >


       <RelativeLayout
        android:id="@+id/header_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/pdf_top_box" >

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:text="Title"
            android:textColor="#ffffff" />

        <Button
            android:id="@+id/back_pdf"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_centerVertical="true"
            android:layout_marginLeft="10dp"
            android:background="@drawable/back_pdf" />
    </RelativeLayout>

<WebView
    android:id="@+id/webView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@id/header_layout"
    />


</RelativeLayout>
4

1 回答 1

3

试试这个方法

webView = (WebView) findViewById(R.id.webView);
        webView.getSettings().setJavaScriptEnabled(true);
        webView.getSettings().setPluginsEnabled(true);
        String pdf = "http://178.239.16.28/fzs/sites/default/files/dokumenti-vijesti/sample.pdf";
        String url = "http://docs.google.com/gview?embedded=true&url=" + pdf;
        webView.setWebViewClient(new WebViewClient()); //UPDATE HERE
        webView.loadUrl(url);
于 2013-09-26T05:50:31.260 回答