本文整理了Java中android.webkit.WebView.getFavicon()
方法的一些代码示例,展示了WebView.getFavicon()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WebView.getFavicon()
方法的具体详情如下:
包路径:android.webkit.WebView
类名称:WebView
方法名:getFavicon
暂无
代码示例来源:origin: stackoverflow.com
String url = "http://stackoverflow.com";
WebView wv = new WebView(this);
wv.setWebViewClient(new WebViewClient() {
@Override
public void onPageFinished(WebView view, String url) {
Log.i("HelloAndroid","Loaded " + url);
Log.i("HelloAndroid","Icon " + (view.getFavicon() == null ? "not" : "") + " found");
}
});
WebIconDatabase wid = WebIconDatabase.getInstance();
wid.requestIconForPageUrl(url, new WebIconDatabase.IconListener() {
public void onReceivedIcon(String url, Bitmap icon) {
Log.i("HelloAndroid","Found Icon for " + url);
}
});
wv.loadUrl("http://stackoverflow.com");
Log.i("HelloAndroid","Loading " + url);
代码示例来源:origin: vic797/prowebview
@Override
public void onReceivedTitle(WebView view, String title) {
super.onReceivedTitle(view, title);
if (proClient !=null)
proClient.onInformationReceived(ProWebView.this, view.getUrl(), title, view.getFavicon());
}
内容来源于网络,如有侵权,请联系作者删除!