gpt4 book ai didi

android - 从 WebView 提交表单数据后返回主机应用程序

转载 作者:行者123 更新时间:2023-11-30 01:31:56 26 4
gpt4 key购买 nike

我正在开发一个 android 应用程序,在我的应用程序中尝试使用 WEBVIEW 加载 URL。在我提交数据后打开网页,它被重定向到其他一些 URL。我的要求是在我的 android 应用程序中获取完整的重定向 URL。

我没有看到任何可用于通知 URL 的事件/API 方法重定向。

有什么方法可以在我的应用程序中监听 URL 重定向然后检索 URL。

最佳答案

您可以使用 webClient 识别重定向,只需在您的 webview 上设置 webclient

像下面一样

    myWebView.setWebViewClient(new WebViewClient()       
{
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url)
{

//do your stuff here
if(url.equalsIgnoreCase("your redirect url "))
{
return false;
}
return true;
}
});

关于android - 从 WebView 提交表单数据后返回主机应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35620178/

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