首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

android webview增多下载附件功能

2013-07-01 
android webview增加下载附件功能webView.setDownloadListener(new DownloadListener() {public void onDo

android webview增加下载附件功能

 webView.setDownloadListener(new DownloadListener() {            public void onDownloadStart(String url, String userAgent,                    String contentDisposition, String mimetype,                    long contentLength) {                // handle download, here we use brower to download, also you can try other approach.                Uri uri = Uri.parse(url);                Intent intent = new Intent(Intent.ACTION_VIEW, uri);                startActivity(intent);            }        });

?

热点排行