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);}
首先,我尝试从网址下载pdf.
其次,我尝试阅读上面下载的pdf文件.
但是它可能无法完成下载.
如果我要等待pdf下载完成.
我该怎么办?
解决方法:
另外,您也可以尝试在Google文档中打开pdf.试试下面的代码-
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);
总结 以上是内存溢出为你收集整理的android-从网址下载PDF并阅读全部内容,希望文章能够帮你解决android-从网址下载PDF并阅读所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)