如何在android的模拟器上阅读PDF文件

时间:2011-03-05 13:19:22

标签: java android pdf

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();
                    }
                }
            }
        });
    }
}

我已尝试过以上代码,但在模拟器上看不到输出。请帮我解决我在模拟器上阅读PDF的问题

1 个答案:

答案 0 :(得分:2)

我认为问题出在您尝试显示.pdf的Activity中。

我没有尝试在我的任何应用程序中打开任何.pdf文件,但粗略搜索说没有原生的,简单的方法来做到这一点。换句话说,没有Android类可以快速显示您的.pdf文件 - 所以您必须使用第三方库,或者自己动手。

请参阅Render a PDF file using Java on Android