次のコードを使用して、Android の webview で pdf ファイルを開こうとしています。新しいビューで開くことを除いて、うまく機能します。新しいビューです。どんな助けでも大歓迎です。
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>