Knowledge Base - Open PDF on a specific page

This article illustrate how to open a PDF from a specific page.
You need to Open the PDF and after a delay call the PDFGotoPage to go to the page you want! The delay allows the PDF to open properly and go to page when the PDF is ready.

 

m_reader.PDFOpen(m_doc, false, this);
new Handler().postDelayed(new Runnable() {			
	public void run() {
		m_reader.PDFGotoPage(pageToGo);
	}
}, 100);
Applies To

RadaeePDF SDK for Android

Details

Created : 2015-04-28 11:15:24, Last Modified : 2018-02-07 09:21:15