【问题标题】:How to view pdf in android browser?如何在安卓浏览器中查看pdf?
【发布时间】:2011-03-26 06:56:51
【问题描述】:

朋友们,

谁能指导我如何在安卓浏览器中查看pdf文件?

或任何其他有用的方法?

任何帮助将不胜感激。

【问题讨论】:

标签: android android-pdf-api androidpdfviewer


【解决方案1】:

试试这个:

Intent intent = new Intent(Intent.ACTION_VIEW);
File file = new File("filename");
intent.setDataAndType(Uri.fromFile(file), "application/pdf");
startActivity(intent);

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2021-04-11
    • 1970-01-01
    • 2017-10-07
    • 2019-12-09
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多