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 で使用できる注釈)。
前もって感謝します !
ザブ