如何检测和自动打开不同类型的文件?

时间:2011-02-16 09:30:41

标签: android

我只想说SD卡上有PDF和Doc文件 - 如何自动检测用于打开这些文件的程序?

这甚至可能吗?

1 个答案:

答案 0 :(得分:1)

您可以使用Intent with application / pdf。

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(pathToPdf, "application/pdf");