webview播放视频后如何返回最后一个url?

发布于 2024-11-02 23:53:28 字数 121 浏览 0 评论 0原文

有一个带有视频链接的webview,在媒体播放器中播放完视频后,媒体播放器关闭并返回到webview,但是webview加载其原始url而不是我单击视频链接的url,我想知道如何返回到媒体播放器关闭后的最后一个网址? 非常感谢!

there is a webview with video links ,after finish playing a video in media player,the media player close and returns to webview ,but webview loads its original url instead of the url that I click the video link,I wander how to return to the last url after the media player close?
thx very much!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萌吟 2024-11-09 23:53:28

您可以检测webview中的url变化,webview的setWebViewClient方法然后实现一个新的webViewClient,然后您可以使用onPageFinished方法访问完整的url。请参阅下面的代码。

webView.setWebViewClient(new WebViewClient()
{

    @Override
    public void onPageFinished(WebView view, String url)
    {
        //save url in a static variable so that this will ensure it will be the last url that will be loaded
    }
});

You can detect the url changes in your webview, setWebViewClient method of webview and then implement a new webViewClient, then you can access full url by using onPageFinished method. see code below.

webView.setWebViewClient(new WebViewClient()
{

    @Override
    public void onPageFinished(WebView view, String url)
    {
        //save url in a static variable so that this will ensure it will be the last url that will be loaded
    }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文