我正在尝试使用以下代码在 android 的 webview 中打开一个 pdf 文件。它运行良好,只是它在新视图中打开。我制作了一个 xml 文件,我希望数据显示在 webview 中而不是一个新的观点。任何帮助将不胜感激。
webView = (WebView) findViewById(R.id.webView);
webView.getSettings().setJavaScriptEnabled(true);
webView.getSettings().setPluginsEnabled(true);
String pdf = "http://commonsware.com/AndTutorials/AndTutorials-3_1-CC.pdf";
String url = "http://docs.google.com/gview?embedded=true&url=" + pdf;
Log.i("TAG", "Opening PDF: " + url);
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="match_parent"
android:layout_below="@id/header_layout" />
</RelativeLayout>