这是在 Android 上打开 Adobe Reader 的一种方法:
try {
Intent intent = new Intent();
intent.setClassName("com.adobe.reader", "com.adobe.reader.AdobeReader");
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(doc), "application/pdf");
startActivity(intent);
}
catch (ActivityNotFoundException activityNotFoundException) {
activityNotFoundException.printStackTrace();
}
有没有办法打开它并指定注释的作者姓名(我们可以在 pdf 文档上使用 adobe reader 10.4.0 的注释)?
提前致谢 !
扎布