0
我想查看一個PDF在Web視圖中使用下面的代碼,我可以查看它,但問題是,它打開一個新的視圖,佔據整個屏幕。我希望看到pdf應僅在Web視圖中打開,而不能在新窗口中打開。 我使用下面的代碼:Webview正在全屏android
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>
是什麼讓你覺得你可以在Android的打開PDF的WebView? –