我对在Android WebView中使用shouldOverrideUrlLoading方法非常熟悉,并在一些项目中使用了它。
我有一个新项目,需要Mozilla的GeckoView而不是标准WebView,但是我似乎找不到一种方法来覆盖url(以防止用户跟踪最初加载的网站上的某些链接)。是否存在类似的方法?

我已经按照以下说明将GeckoView嵌入到我的项目中:https://wiki.mozilla.org/Mobile/GeckoView并且网站呈现出色。

我尝试模仿的Android WebView代码如下所示:

browser.setWebViewClient(new WebViewClient() {
  public boolean shouldOverrideUrlLoading(WebView view, String url) {
    Uri uri = Uri.parse(url);
    if (url.startsWith("https://www.example.com/")) {
      return false;
    }
    return true;
  }
});


GeckoView中有类似的方法吗?

最佳答案

我认为您要寻找的是navigationDelegate#OnLoadRequest

private fun createNavigationDelegate() = object : GeckoSession.NavigationDelegate {
    override fun onLoadRequest(session: GeckoSession, request: GeckoSession.NavigationDelegate.LoadRequest): GeckoResult<AllowOrDeny> {
        return if (request.uri.startsWith("https://www.example.com/")) {
            GeckoResult.fromValue(AllowOrDeny.DENY)
        } else {
            GeckoResult.fromValue(AllowOrDeny.ALLOW)
        }
    }
}

private fun setupGeckoView() {
    geckoView = findViewById(R.id.geckoview)
    val runtime = GeckoRuntime.create(this)
    geckoSession.open(runtime)
    geckoView.setSession(geckoSession)
    geckoSession.loadUri(INITIAL_URL)
    geckoSession.navigationDelegate = createNavigationDelegate()
}


如果您还有其他问题,也可以在其GitHub repository上打开问题。您可能感兴趣的另一个项目是Mozilla Android Components

10-08 14:54