我嘗試添加http://208.77.22.13/proprek_android/property-listing-trends.php?PropertyID=63&placeId=1&property_type=1&BuildingName=Arabian%20Ranches%20&BedRooms=4的Android Webview是慢
在網頁流量,但它的加載速度非常slow.I試圖桌面瀏覽器它的加載速度非常快。
wv1 = (WebView) findViewById(R.id.webviewdetail);
WebSettings webSettings = wv1.getSettings();
webSettings.setLoadsImagesAutomatically(true);
webSettings.setJavaScriptEnabled(true);
webSettings.setLoadWithOverviewMode(true);
webSettings.setRenderPriority(WebSettings.RenderPriority.HIGH);
if (Build.VERSION.SDK_INT >= 19) {
// chromium, enable hardware acceleration
wv1.setLayerType(View.LAYER_TYPE_HARDWARE, null);
} else {
// older android version, disable hardware acceleration
wv1.setLayerType(View.LAYER_TYPE_SOFTWARE, null);
}
我將此代碼添加到Android,但stil緩慢爲什麼?
我添加了一個完整的代碼是更新鮮和工作。你可以看看它。 –