webview播放视频后如何返回最后一个url?
有一个带有视频链接的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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以检测webview中的url变化,webview的setWebViewClient方法然后实现一个新的webViewClient,然后您可以使用onPageFinished方法访问完整的url。请参阅下面的代码。
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.