Reputation: 6922
public void openDocumentWithInstalledApp(String filename) {
String mimetype = "";
url = url+ filename;
if (!url.startsWith("http://") && !url.startsWith("https://")) {
url = "http://" + url;
}
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity(browserIntent);
/*what should I do?*/
mimetype = "application/pdf";
File file = new File("/mnt/sdcard/Download/" + filename);
Intent intent1 = new Intent(Intent.ACTION_VIEW);
intent1.setDataAndType(Uri.fromFile(file), mimetype);
intent1.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(intent1);
}
First, I try to download a pdf from url. Second, I try to read the pdf above download. But it may not download finish. If I want to wait the pdf download finish. What should I do?
Upvotes: 1
Views: 6866
Reputation: 6335
As an alternative you can try opening pdf in google docs. Try below code-
String pdfurl = "http://www.example.com/yourfile.pdf";
String googleDocsUrl = "http://docs.google.com/viewer?url="+pdfurl;
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse(googleDocsUrl ), "text/html");
startActivity(intent);
Upvotes: 6