Webview 填坑 :点击超链接(如资源路径)无效的问题

2018-07-09  本文已影响0人  钱先生的瞎比比

点击超链接(如资源路径)无效的问题

webView.setDownloadListener(new MyWebViewDownLoadListener()); //通过实现自己的DownloadListener来实现文件的下载 private 
class MyWebViewDownLoadListener implements DownloadListener{ 
@Override public 
 void onDownloadStart(String url, String userAgent, String arg2, String mimetype, long contentLength) {
            Uri uri = Uri.parse(url); // url为你要链接的地址         
           Intent intent = new Intent(Intent.ACTION_VIEW, uri);
            startActivity(intent);
        }
    }

说明:其实只要实现下载的监听就好了。

上一篇 下一篇

猜你喜欢

热点阅读