如何自定义使用Action_View打开的PDF文件内容

时间:2011-11-28 06:23:27

标签: android actionview pdf-reader pdf-rendering

早上好,

我遇到了一个奇怪的问题。我想在android中打开PDF文件...我成功了两个 方式

1)-->First Using API (But that is damn slow)

2) - >秒使用ACTION_VIEW.It在具有Quick Office的手机上工作  代码是

File file = new File("/mnt/sdcard/videosadoce.pdf");

     if (file.exists()) {
         Uri path = Uri.fromFile(file);
         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(MyPdfViewer.this, 
                 "No Application Available to View PDF", 
                 Toast.LENGTH_SHORT).show();
         }
     }

现在我想自定义该视图默认开始活动。我想添加一些动画 当我浏览PDF文件页面时,像书一样打开页面效果。 那么如何自定义预定义视图

1 个答案:

答案 0 :(得分:2)

您无法自定义应用程序启动的第三方应用程序的任何动画,以查看您的pdf文档。实现这一目标的唯一方法是集成任何开源PDF项目并根据需要进行自定义。