Hi !

Here is a way to open Acrobat Reader on Android:

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();
}


Is there a way to open it and specify the author name for the annotations 
(the annonations we can with acrobat reader 10.4.0 on pdf documents)?

Thanks in advance !

Zab

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to