Hello;
I'm writing an application for GalaxyTab.
I need to show a specified page of the pdf file.
So, I wrote the following code.
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse("file:///mnt/sdcard/download/mypdf_doc.pdf#page=3"), "application/pdf");
this.startActivity(intent);
In the 2nd line, I specified pag3 as described in 'PDF Open Parameters for Adobe Acrobat 7.0'.
But the Acrobat Reader X always shows the top page.
Could anyone help me?
'PDF Open Parameter' says.
URL Examples
http://example.org/doc.pdf#nameddest=Chapter6
http://example.org/doc.pdf#page=3
http://example.org/doc.pdf#page=3&zoom=200,250,100
Thank you.
North America
Europe, Middle East and Africa
Asia Pacific
Copyright © 2012 Adobe Systems Incorporated. All rights reserved.
Use of this website signifies your agreement to the Terms of Use and Online Privacy Policy (updated 07-14-2009).