用webview元件顯示普通網頁時一般會出現橫向滾動條,這樣會導致頁面檢視起來非常不方便。其實通過設定websettings的屬性可以輕易地解決此問題,不過此設定隱藏的比較深,一般很少人會用到。
view code xml
12
websettings= webview.getsettings();websettings.setlayoutalgorithm(layoutalgorithm.single_column);
layoutalgorithm是乙個列舉,用來控制html的布局,總共有三種型別:
normal:正常顯示,沒有渲染變化。
single_column:把所有內容放到webview元件等寬的一列中。
narrow_columns:可能的話,使所有列的寬度不超過螢幕寬度。
WebView寬度自適應
webview寬度自適應 用webview元件顯示普通網頁時一般會出現橫向滾動條,這樣會導致頁面檢視起來非常不方便。其實通過設定websettings的屬性可以輕易地解決此問題,不過此設定隱藏的比較深,一般很少人會用到。12 websettings webview.getsettings webse...
Webview自適應螢幕
第一種 settings.setusewideviewport true settings.setloadwithoverviewmode true 第二種 websetting settings webview.getsettings settings.setlayoutalgorithm lay...
Webview 自適應螢幕
第一種 websettings settings webview.getsettings settings.setlayoutalgorithm layoutalgorithm.single column layoutalgorithm是乙個列舉用來控制頁面的布局,有三個型別 1.narrow co...