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);
}
}
RadaeePDF SDK for Android
Created : 2015-10-19 15:11:07, Last Modified : 2015-10-19 15:13:34