我的代码是:
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方法 我该怎么办?
答案 0 :(得分:1)
在android中自然不支持PDF。您将需要使用开源库。
例如,Android PDF Viewer。 http://code.google.com/p/apv/