Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
作为企业安全的一部分,我需要限制默认的 android 浏览器来阻止某些网站。
我已经实现了一个后台服务,当用户打开浏览器时会通知我。
用户访问网站时如何获取网站URL或浏览内容?
如何监控它?
据我所知,无法从默认浏览器获取当前 URL。如果需要,您可以使用 android web view 实现自己的浏览器,并使用 web view 客户端,您可以通过覆盖来获取用户正在浏览的 URL
public boolean shouldOverrideUrlLoading(WebView view, String url)
更多检查下面的链接
获取浏览器中正在查看的当前页面(可能吗?)