<span style="font-family: 宋体; font-size: 15px;"><strong><span style="color: #111111; text-transform: none; line-height: 21px; text-indent: 0px; letter-spacing: normal; font-style: normal; font-variant: normal; font-weight: normal; word-spacing: 0px; float: none; display: inline !important; white-space: normal; orphans: 2; widows: 2; font-size-adjust: none; font-stretch: normal; background-color: #ffffff; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;">在Android中内置了一款高机能webkit内核浏览器,在SDK中封装成名为WebView的组件。<!--more--> </span></strong></span>
<span style="font-family: 宋体; font-size: 15px;"><strong>WebView</strong>应用:</span>
<span style="font-family: 宋体; font-size: 15px;">(1)</span><span style="font-family: 宋体; font-size: 15px;">添加权限:AndroidManifest.xml中必须应用容许"android.permission.INTERNET",不然会出Web page not available错误。</span> <span style="font-family: 宋体; font-size: 15px;">(2)在要Activity中生成一个WebView组件:WebView webView = new WebView(this);</span>
<span style="font-family: 宋体; font-size: 15px;">(3)设置WebView根蒂根基信息:</span> <span style="font-family: 宋体; font-size: 15px;"> webview.getSettings().setJavaScriptEnabled(true);// 设置支撑Javascript</span> <span style="font-family: 宋体; font-size: 15px;"> requestFocus();// 触摸核心起感化</span> <span style="font-family: 宋体; font-size: 15px;"> setScrollBarStyle(SCROLLBARS_OUTSIDE_OVERLAY);// 作废迁移转变条</span> <span style="font-family: 宋体; font-size: 15px;">(4)设置WevView要显示的网页:</span> <span style="font-family: 宋体; font-size: 15px;"> webView.loadUrl("http://www.google.com");// 互联网</span> <span style="font-family: 宋体; font-size: 15px;"> webView.loadUrl("file:///android_asset/XX.html");// 本地文件,本地文件存放在:assets文件中</span> <span style="font-family: 宋体; font-size: 15px;">(5)若是点击链接不打开Android的体系browser中响应,</span><span style="font-family: 宋体; font-size: 15px;">则须要给WebView添加一个事务并重写shouldOverrideUrlLoading办法。</span>
<span style="font-family: 宋体; font-size: 15px;"> public boolean shouldOverrideUrlLoading(WebView view,String url) { </span> <span style="font-family: 宋体; font-size: 15px;"> view.loadUrl(url); </span> <span style="font-family: 宋体; font-size: 15px;"> return true; </span> <span style="font-family: 宋体; font-size: 15px;"> } </span> <strong><span style="font-family: 宋体; font-size: 15px;">其它项目组可重写的办法:</span></strong>
<span style="font-family: 宋体; font-size: 15px;">(1)接管到Http恳求的事务</span> <span style="font-family: 宋体; font-size: 15px;">onReceivedHttpAuthRequest(WebView view, HttpAuthHandler handler, String host, String realm) </span> <span style="font-family: 宋体; font-size: 15px;">(2)打开链接前的事务</span> <span style="font-family: 宋体; font-size: 15px;">public boolean shouldOverrideUrlLoading(WebView view, String url) {</span>
<span style="font-family: 宋体; font-size: 15px;"> view.loadUrl(url);</span>
<span style="font-family: 宋体; font-size: 15px;"> return true;</span>
<span style="font-family: 宋体; font-size: 15px;">} </span> <span style="font-family: 宋体; font-size: 15px;">(3)载入页面完成的事务</span> <span style="font-family: 宋体; font-size: 15px;">public void onPageFinished(WebView view, String url) { </span>
<span style="font-family: 宋体; font-size: 15px;">} </span><span style="font-family: 宋体; font-size: 15px;"> </span> <span style="font-family: 宋体; font-size: 15px;">(4)载入页面开端的事务</span> <span style="font-family: 宋体; font-size: 15px;">public void onPageStarted(WebView view, String url, Bitmap favicon) { </span>
<span style="font-family: 宋体; font-size: 15px;">}</span> <span style="font-family: 宋体; font-size: 15px;">这个事务就是开端载入页面调用的,凡是我们可以在这设定一个loading的页面,告诉用户法度在守候收集响应。</span><span style="font-family: 宋体; font-size: 15px;"> </span>
<span style="font-family: 宋体; font-size: 15px;">一、若是用WebView点链接看了很多页今后,若是不做任何处理惩罚,点击体系返回(Back)键,全部浏览器会调用finish()办法而停止自身,若是浏览的网页回退而不是退出浏览器,须要在当前Activity中处理惩罚并花费掉该Back事务。</span> <span style="font-family: 宋体; font-size: 15px;"> 覆盖Activity类的onKeyDown(int keyCoder,KeyEvent event)办法。</span>
<span style="font-family: 宋体; font-size: 15px;"> public boolean onKeyDown(int keyCode,KeyEvent event){ if(webView.canGoBack() && keyCode == KeyEvent.KEYCODE_BACK){ webview.goBack();// goBack()默示返回webView的上一页面 return true; } return false; }</span>
<span style="font-family: 宋体; font-size: 15px;">二、loadData()和loadDataWithBaseURL()应用的差别</span>
loadData()中的html data中不克不及包含””#””, “”%””, “”\””, “”?””四别字符,呈现这种字符就会呈现解析错误,显示找不到网页还有项目组html代码。
处理惩罚办法:我们须要用UrlEncoder编码为%23, %25, %27, %3f 。
可以应用以下两种代码,data为string类型的html代码
(1)webView.loadData(URLEncoder.encode(data, “utf-8″), “text/html”, “utf-8″);
(2)webView.loadDataWithBaseURL(null, data, “text/html”, “utf-8″, null);
WebView相干属性:
(1)设置WebView为透明:
android:background=”#00000000″
android:cacheColorHint=”#00000000″
WebView.setBackgroundColor(0);
(2)WebView 显示sd卡:
webView.loadDataWithBaseURL(null, “”, “text/html” , “utf-8″, null);
(3)WebView显示字符串
webView.loadDataWithBaseURL(””, “”, “text/html”, “utf-8″, “”);
(4)设置WebView中显示字体的大小
public static final TextSize[] FONT_SIZES = new TextSize[] {
TextSize.SMALLER,
TextSize.NORMAL,
TextSize.LARGER
};
private WebSettings wb;
wb = mWebViewRightContent.getSettings();
wb.setTextSize(FONT_SIZES[iFontSizeId]);
字体大小:
public enum TextSize {
SMALLEST(50),
SMALLER(75),
NORMAL(100),
LARGER(150),
LARGEST(200);
TextSize(int size) {
value = size;
}
int value;
}
(5)WebView显示html文件时,若要达到和PC上浏览器显示的结果完全一样,只需对WebView做一下设置即可:
适应全屏
39 适应竖屏
57 适应横屏
mWebView.setInitialScale(39);
重视的是:html若是字体太小则在Android上显示的就很小。一般为6、7号字体。
(6)WebView设置渐变:
android:fadingEdge=”vertical”
android:fadingEdgeLength=”20px” (垂直标的目标,高低渐变区域为20px)
(7)设置WebView可触摸放大缩小:
mWebView.getSettings().setBuiltInZoomControls(true);
(8)WebView双击变大,再双击后变小,当手动放大后,双击可以恢复到原始大小,如下设置:
webView.getSettings().setUseWideViewPort(true);
(9)几种加快WebView加载的办法,进步衬着的优先级
webView.getSettings().setRenderPriority(RenderPriority.HIGH);
应用webView.getSettings().setBlockNetworkImage,把加载放在最后来加载衬着webView.getSettings().setBlockNetworkImage(true);
(10)将字符串转换成HTML情势的文件显示:
// 获取的字符串
String sDetails = cursor.getString(cursor.getColumnIndex(”sChinese”));
// 按行截取字符串,将其存放在数组中
String[] str = sDetails.split(”\n”);
String s1 = “”;
// 遍历数组进行断定,若是前提成立,就添加设定的css样式
for (int i = 0;i < str.length;i ++) {
if (str[i].trim().startsWith(”vt.”)) {
str[i] = “<h3 style=\”font-size:10px; color:#000; background:#FCFCFC; padding:3px 5px;\”>” + str[i] + “<h3>” + “\n”;
} else if (getMark(str[i].trim())) {
str[i] = “<h4 style=\”font-size:10px; color:#F60; font-weight:normal;\”>” + str[i] + “</h4>” + “\n”;
} else if (str[i].trim().startsWith(”〖”)) {
str[i] = “<span style=\”color:#333; font-size:10px; color:#F60\”>” + str[i] + “</span>” + “\n”;
} else {
str[i] = “<p style=\”line-height:16px; font-size:10px;color:#666;\”>” + str[i] + “</p>” + “\n”;
}
// 将批改后的字符串拼接起来
s1 += str[i];
}
// 用WebView将字符串以HTML的情势显示出来
webView.loadDataWithBaseURL(”fake://not/needed”, s1, “text/html”, “utf-8″, “”);