我想在android的第一页显示PDF文件
现在我使用下面的代码显示 PDF 文件。重新打开 pdf 后,它显示当前页面而不是重定向第一页。
如何在android中重定向PDF的第一页?
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(path, "application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(intent);