我正在尝试使用以下代码在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>