1

经过互联网上的某些研究和查找后,我发现我无法将这些文件放在资产文件夹中,因为这些文件将是我的应用程序私有的,我希望在按下按钮时调用本机 pdf 应用程序,将用户重定向到特定的文档。我感到困惑的是如何将文件与我的应用程序捆绑在一起,以便当用户下载或安装我的应用程序时,这些文件会存储在她的 SD 卡中。

4

1 回答 1

0

将您的评估文件复制到 sdcard并单击按钮时打开 sdcard 中的文件,如下所示

 File rootDir = Environment.getExternalStorageDirectory();

 File file = new File(rootDir + "/filepath/"+fileName);//give the file path here
 if(file.exists())
   {
    // do action here
   }
于 2012-10-01T10:00:29.413 回答