我正在使用jsPDF将html转换为pdf文件。在网站上它工作正常但在android webview
中单击按钮时它只会重新加载页面。我搜索了一切,但没有什么工作正常。
我在主要活动中添加了以下代码:
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);
}
});
我是android的新手
请帮我找到它。
提前谢谢。