gpt4 book ai didi

android - Phonegap Android 链接 - 下载链接

转载 作者:行者123 更新时间:2023-11-30 04:22:52 25 4
gpt4 key购买 nike

我们已经构建了一个 Phonegap/Android 应用程序,它使用 iframe 来处理付款并提供 mp3 的下载链接 - 一切正常 - 直到您点击下载并且没有任何反应!

应用内的 iframe 下载权限是否存在问题?有没有人知道如何解决?

谢谢保罗

最佳答案

两种可能的解决方案:

    // Make sure links in the webview is handled by the webview and not sent to a full browser
myWebView.setDownloadListener(new DownloadListener() {
public void onDownloadStart(String url, String userAgent,
String contentDisposition, String mimetype,
long contentLength) {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(url));
startActivity(intent);
}
});

它可以打开与您的 WebView 的链接。

或在您的 iFrame 中使用 jQuery(前提是 iFrame 中只有 1 个链接),这将在应用程序外部打开链接:

<script type="text/javascript">
$(document).ready(function() {
var url;
url = $("a").attr('href');
$("a").attr("onclick", "window.open('"+url+"'); return false;");
});
</script>

关于android - Phonegap Android 链接 - 下载链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9001448/

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