一、設置WebView爲透明:css
android:background="#00000000" android:cacheColorHint="#00000000" WebView.setBackgroundColor(0);
二、WebView 顯示sd卡圖片:html
webView.loadDataWithBaseURL(null,"<img src=\"www.2cto.com" />", "text/html", "utf-8", null);
三、WebView顯示字符串:java
webView.loadDataWithBaseURL("fake://not/needed", s1, "text/html", "utf-8", "");
四、設置WebView中顯示字體的大小:android
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; }
五、WebView顯示html文件時,若要達到和PC上瀏覽器顯示的效果徹底同樣,只需對WebView作一下設置便可:web
view plaincopy //適應全屏 39適應豎屏 57適應橫屏 mWebView.setInitialScale(39); //注意的是:html隻字體過小的話,在Android手機或開發板上顯示的就至關的小。通常六、7號字體吧!
六、WebView設置漸變:數組
android:fadingEdge="vertical" android:fadingEdgeLength="20px" //(垂直方向,上下漸變區域爲20px)
七、設置WebView可觸摸放大縮小:瀏覽器
mWebView.getSettings().setBuiltInZoomControls(true);
八、WebView雙擊變大,再雙擊後變小,當手動放大後,雙擊能夠恢復到原始大小,以下設置:ide
webView.getSettings().setUseWideViewPort(true);
九、幾種加速WebView加載的方法:字體
//· 提升渲染的優先級 webView.getSettings().setRenderPriority(RenderPriority.HIGH); //· 使用webView.getSettings().setBlockNetworkImage,把圖片加載放在最後來加載渲染 webView.getSettings().setBlockNetworkImage(true);
十、將字符串轉換成HTML形式的文件顯示:ui
//獲取的字符串 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", "");