如何在android设备中打开PDF文件?

时间:2016-03-02 07:26:24

标签: android

我对android很新鲜。我的任务是在Android设备中打开一个pdf文件。我搜索了一些教程并试了一下。但我无法打开pdf文件。我不知道我做错的地方?请帮助我。

activity_main.xml中

<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:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/textView1"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="106dp"
        android:text="open" />

</RelativeLayout>

MainActivity.java

package com.example.pdftest;

import java.io.File;

import android.net.Uri;
import android.os.Bundle;
import android.os.Environment;
import android.app.Activity;
import android.content.ActivityNotFoundException;
import android.content.Intent;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.Toast;

public class MainActivity extends Activity implements OnClickListener{

    private Button b1;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        b1=(Button)findViewById(R.id.button1);
        b1.setOnClickListener(this);
    }


    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }


    @Override
    public void onClick(View arg0) {
        // TODO Auto-generated method stub
        File pdffile=new File(Environment.getExternalStorageDirectory(),"/sdcard/abc.pdf");
        try
        {
            if(pdffile.exists())
            {
                Uri path=Uri.fromFile(pdffile);
                Intent objintent=new Intent(Intent.ACTION_VIEW);
                objintent.setDataAndType(path, "application/pdf");
                objintent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
                startActivity(objintent);
            }
            else
            {
                Toast.makeText(MainActivity.this,"File Not Found",Toast.LENGTH_SHORT).show();
            }
        }
        catch(ActivityNotFoundException e)
        {
            Toast.makeText(MainActivity.this,"No viewer application Found",Toast.LENGTH_SHORT).show();
        }
        catch (Exception e)
        {
        e.printStackTrace();
        }
    }

}

的AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.pdftest"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="18" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>  

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.pdftest.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

2 个答案:

答案 0 :(得分:0)

尝试使用此代码显示sdcard

中的pdf文件
File file = new File(Environment.getExternalStorageDirectory().getAbsolutePath()+"/example.pdf");
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file), "application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
startActivity(intent);

同时在清单中插入权限

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

答案 1 :(得分:0)

您必须从File类构造函数中的第二个参数中删除根。当您使用File(String dirPath,String name)实例化File时,第二个参数必须只包含文件名,第一个参数必须包含文件所在的目录。

通过此更正,您的代码可以正常工作:

File pdffile=new File(Environment.getExternalStorageDirectory(),"abc.pdf");