1)WebViewClient.onPageStarted()方法的favicon参数始终为null.
2)永远不会调用WebChromeClient.onReceivedIcon()方法.
3)在onPageStarted()和onPageFinished()中调用WebView.getFavicon()但它总是返回null.
我无法在网上找到一个显示如何访问favicon的示例.任何提示将不胜感激.
尝试将以下行添加到onCreate():
WebIconDatabase.getInstance().open(getDir("icons",MODE_PRIVATE).getPath());
完成此操作后,您应该开始为此Activity中的任何WebView获取onReceivedIcon()回调,并且只要图标可用,getFavicon()方法也应该开始返回有效对象而不是null.