美文网首页
android webview实现下载文件

android webview实现下载文件

作者: 啸鳯 | 来源:发表于2018-04-26 17:09 被阅读0次
android webview不能直接下载文件

所以要实现下载文件要调用内置浏览器
如下

private class MWebViewDownLoadListener implements DownloadListener {
        @Override
        public void onDownloadStart(String url, String userAgent, String contentDisposition, String mimetype, long contentLength) {
            Uri uri = Uri.parse(url);
            Intent intent = new Intent(Intent.ACTION_VIEW, uri);
            startActivity(intent);
        }
    }
   webview.setDownloadListener(new MWebViewDownLoadListener());

这样就可以了

相关文章

网友评论

      本文标题:android webview实现下载文件

      本文链接:https://www.haomeiwen.com/subject/uidmlftx.html