如何在Android中使用url阅读PDF文件

时间:2011-11-29 08:51:52

标签: java android

我的代码是:

File file = new File(docpath);
String mimetype = "application/pdf";

Uri path = Uri.fromFile(file);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(path, mimetype);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);

startActivity(intent);

如果我想使用application / pdf方法 我该怎么办?

1 个答案:

答案 0 :(得分:1)

在android中自然不支持PDF。您将需要使用开源库。

例如,

Android PDF Viewer。 http://code.google.com/p/apv/