如何在 Android 网页视图中显示 pdf 文档?


此示例说明如何以编程方式锁定 Android 设备。

步骤 1 - 在 Android Studio 中新建一个项目,转到文件 ⇒ 新建项目并填写所有必需的详细信息来新建一个项目。

步骤 2 - 将以下代码添加到 res/layout/activity_main.xml

<? xml version= "1.0" encoding= "utf-8" ?>
<RelativeLayout xmlns: android = "http://schemas.android.com/apk/res/android"
   xmlns: tools = "http://schemas.android.com/tools"
   android :layout_width= "match_parent"
   android :layout_height= "match_parent"
   android :layout_margin= "16dp"
   tools :context= ".MainActivity" >
   <Button
      android :onClick= "loadPage"
      android :layout_width= "match_parent"
      android :layout_height= "wrap_content"
      android :text= "Load web Page" />
</RelativeLayout>

步骤 3 - 将以下代码添加到 src/MainActivity

package app.tutorialspoint.com.sample ;
import android.os.Bundle ;
import android.support.v7.app.AppCompatActivity ;
import android.view.View ;
import android.webkit.WebView ;
public class MainActivity extends AppCompatActivity {
   @Override
   protected void onCreate (Bundle savedInstanceState) {
      super .onCreate(savedInstanceState) ;
      setContentView(R.layout. activity_main ) ;
   }
   public void loadPage (View view) {
      WebView webview = new WebView( this ) ;
      webview.getSettings().setJavaScriptEnabled( true ) ;
      setContentView(webview) ;
      String pdf =
         "http://www.adobe.com/devnet/acrobat/pdfs/pdf_open_parameters.pdf" ;
      webview.loadUrl( "http://drive.google.com/viewerng/viewer?embedded=true&url=" + pdf) ;
   }
}

步骤 4 - 将以下代码添加到 androidManifest.xml

<? xml version= "1.0" encoding= "utf-8" ?>
<manifest xmlns: android = "http://schemas.android.com/apk/res/android"
   package= "app.tutorialspoint.com.sample" >
   <application
      android :allowBackup= "true"
      android :icon= "@mipmap/ic_launcher"
      android :label= "@string/app_name"
      android :roundIcon= "@mipmap/ic_launcher_round"
      android :supportsRtl= "true"
      android :theme= "@style/AppTheme" >
      <activity android :name= ".MainActivity" >
         <intent-filter>
            <action android :name= "android.intent.action.MAIN" />
            <category android :name= "android.intent.category.LAUNCHER" />
         </intent-filter>
      </activity>
      <receiver
         android :name= ".DeviceAdmin"
         android :description= "@string/app_description"
         android :label= "@string/app_name"
         android :permission= "android.permission.BIND_DEVICE_ADMIN" >
         <meta-data
            android :name= "android.app.device_admin"
            android :resource= "@xml/policies" />
         <intent-filter>
            <action android :name= "android.app.action.DEVICE_ADMIN_ENABLED" />
         </intent-filter>
      </receiver>
   </application>
</manifest>

让我们尝试运行你的应用程序。我假设你已将实际的 Android 移动设备连接到计算机。要从 Android Studio 运行该应用,请打开一个项目的活动文件并从工具栏单击 运行 图标。选择移动设备作为选项,然后检查移动设备,它将显示你的默认 。

更新于: 2019 年 7 月 30 日

2 千次观看

开启您的职业生涯之旅

通过完成课程取得认证

开始使用
广告
© . All rights reserved.