如何在Webview中允许文件下载?

时间:2018-02-25 18:45:52

标签: java android android-webview

有没有人知道如何在Webview(Android Studio)中下载?我在网站上获得了PDF文档,但无法在申请中下载PDF文档。

1 个答案:

答案 0 :(得分:0)

你试过这个吗?

mWebView.setDownloadListener(new DownloadListener() {
    public void onDownloadStart(String url, String userAgent,
                String contentDisposition, String mimetype,
                long contentLength) {
        Intent i = new Intent(Intent.ACTION_VIEW);
        i.setData(Uri.parse(url));
        startActivity(i);
    }
});