在 Android 中获取 webview 最后加载的 url,而无需执行 webView.goBack()
我想记录历史 url 或上次加载的 url,而不手动存储历史 url。这可能吗?
I want to log the history url or last loaded url without manually storing the history urls. Is that possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在文档中找到了答案...
Found the answer in the docs ...
您可以通过将访问的 URL 添加到 onPageFinished() 中并在用户备份时删除它们来维护访问的 URL 的堆栈(列表)。
即
然后将后退键捕获在活动中:
You could maintain a stack(list) of URL's visited by adding them in onPageFinished() and removing them when the user backs up.
i.e.
and then trap the back key in the activity: