gpt4 book ai didi

android - Webview 应用程序下载不起作用

转载 作者:行者123 更新时间:2023-11-29 23:53:22 27 4
gpt4 key购买 nike

在我的网站上有一些可下载的内容。我已经使用 android studio 从该网站创建了一个 webview 应用程序。在我的应用程序中,当我单击那些可下载的内容时没有任何反应,它没有被下载。但如果我从移动浏览器使用该网站,它就会被下载。那么我的 Android 应用程序有什么问题?

最佳答案

你试过吗

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 - Webview 应用程序下载不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50636960/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com