gpt4 book ai didi

android - 如何从 url 下载 pdf 并在 android 应用程序本身中查看下载的 pdf?

转载 作者:行者123 更新时间:2023-11-29 19:03:30 33 4
gpt4 key购买 nike

我正在创建一个杂志 android 应用程序,我需要在其中从 URL 下载 PDF,然后使用 Web View 在应用程序本身中打开下载的文档。

我曾尝试使用谷歌文档将 URL 直接加载到 WebView 中,但这不起作用,因为 PDF 本身非常大。

最佳答案

只需使用这个:

    String URL="http://yourdomain.in/yourpdf_file.pdf";

FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
globalProgressDialog.ProgressDialogShow(MainActivity.this);

Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(URL));
startActivity(browserIntent);

globalProgressDialog.dismissProgressDialog();


}
});

关于android - 如何从 url 下载 pdf 并在 android 应用程序本身中查看下载的 pdf?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48003656/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com