gpt4 book ai didi

android - 从我的 Android 应用程序打开 PDF

转载 作者:行者123 更新时间:2023-11-29 00:44:38 25 4
gpt4 key购买 nike

我试图在单击某个按钮时通过检查用户是否安装了 Adob​​e Reader 来简单地从我的应用程序打开 PDF,如果安装了,则使用 Adob​​e Reader 打开 PDF。我很确定这是可能的,但我对如何实现这一目标感到有些迷茫。非常感谢您的帮助!

最佳答案

基本上,您可以通过从您的应用程序启动 pdfreader 来完成此操作。检查以下代码。

             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(OpenPDFNew.this, "NO PDF Viewer is available,Please Download it from Market ", Toast.LENGTH_LONG).show();
}

路径只是您的 pdf 文件的实际路径。希望这对您有所帮助。

关于android - 从我的 Android 应用程序打开 PDF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7085685/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com