早上好,
我陷入了一个奇怪的问题。我想在android中打开PDF文件......我通过两种方式成功了
1)-->First Using API (But that is damn slow)
2)-->第二次使用 ACTION_VIEW。它适用于具有 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 文件页面时使页面像书一样打开。那么如何自定义该预定义视图