本文整理了Java中android.webkit.WebView.invalidate()
方法的一些代码示例,展示了WebView.invalidate()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WebView.invalidate()
方法的具体详情如下:
包路径:android.webkit.WebView
类名称:WebView
方法名:invalidate
暂无
代码示例来源:origin: ankidroid/Anki-Android
@Override
public void invalidateView() {
if (mWebView != null) {
mWebView.invalidate();
}
}
代码示例来源:origin: ankidroid/Anki-Android
@Override
protected void onPostExecute(String html) {
if (html != null && mIsRunning) {
try {
mWebView.loadData(URLEncoder.encode(html, "UTF-8").replaceAll("\\+", " "), "text/html; charset=utf-8", "utf-8");
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
mProgressBar.setVisibility(View.GONE);
int backgroundColor = Themes.getColorFromAttr(mWebView.getContext(), android.R.attr.colorBackground);
mWebView.setBackgroundColor(backgroundColor);
mWebView.setVisibility(View.VISIBLE);
mWebView.invalidate();
}
}
}
代码示例来源:origin: stackoverflow.com
public void loadErrorPage(WebView webview){
if(webview!=null){
String htmlData ="<html><body><div align=\"center\" >"This is the description for the load fail : "+description+"\nThe failed url is : "+failingUrl+"\n"</div></body>";
webview.loadUrl("about:blank");
webview.loadDataWithBaseURL(null,htmlData, "text/html", "UTF-8",null);
webview.invalidate();
}
}
代码示例来源:origin: stackoverflow.com
WebView webView = (WebView)findViewById(R.id.documentView);
webView.invalidate();
webView.getSettings().setJavaScriptEnabled(true);
webView.getSettings().setLoadWithOverviewMode(true);
webView.getSettings().setUseWideViewPort(true);
webView.loadData("file:///"+localPath,"application/pdf", "UTF-8");
内容来源于网络,如有侵权,请联系作者删除!