早上好,
我遇到了一个奇怪的问题。我想在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文件页面时,像书一样打开页面效果。 那么如何自定义预定义视图
答案 0 :(得分:2)
您无法自定义应用程序启动的第三方应用程序的任何动画,以查看您的pdf文档。实现这一目标的唯一方法是集成任何开源PDF项目并根据需要进行自定义。