阅读PDF文件

时间:2011-03-26 15:02:59

标签: android

是否可以在Android上阅读pdf文件,我该怎么办?

3 个答案:

答案 0 :(得分:2)

你可以做的最多就是调用另一个程序用这样的东西打开它(只有你安装了Quickoffice才有效)

    public class OpenPdf extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        Button button = (Button) findViewById(R.id.OpenPdfButton);
        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                File file = new File("/sdcard/example.pdf");

                if (file.exists()) {
                    Uri path = Uri.fromFile(file);
                    Intent intent = new Intent(Intent.ACTION_VIEW);
                    intent.setDataAndType(path, "application/pdf");
                    intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);

                    try {
                        startActivity(intent);
                    } 
                    catch (ActivityNotFoundException e) {
                        Toast.makeText(OpenPdf.this, 
                            "No Application Available to View PDF", 
                                Toast.LENGTH_SHORT).show();
                    }
                }
            }
        });
    }
}

答案 1 :(得分:2)

Android本身不支持PDF。但是,您可以通过Google Docs Viewer在线阅读PDF文件。这是代码:

WebView webview = (WebView) findViewById(R.id.webview);
webview.getSettings().setJavaScriptEnabled(true); 
String pdf = "http://www.adobe.com/devnet/acrobat/pdfs/pdf_open_parameters.pdf";
webview.loadUrl("http://docs.google.com/gview?embedded=true&url=" + pdf);

答案 2 :(得分:0)

没有。此时,没有可以逐字节解析.pdf的库。

Android确实有一些用于显示.pdf的第三方库,但Android本身也不包含用于执行此操作的类/包。