Please Wait...

Cancel

How to open URL?

Rate
  • Very helpful
  • Could be better
  • Not helpful
Print

This article shows how to open an URL of a pdf.

You have to edit OnOpenUri method of PDFReaderAct class as follow:

public void OnOpenURI(String uri)
{
if(uri != null){
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(uri));
startActivity(i);
}
}
Applies To

RadaeePDF SDK for Android

Details

Created : 2015-10-19 15:11:07, Last Modified : 2015-10-19 15:13:34

Close
You are now being logged in using your Facebook credentials