"); videoRef = (WebView) findViewById(R.id.videoRef); /*加载网络视频*/ WebSettings webSettings = videoRef.getSettings(); //设置缓存 webSettings.setAppCacheEnabled(true); //设置缓存模式,一共有四种模式 webSettings.setCacheMode(WebSettings.LOAD_CACHE_ELSE_NETWORK); //该方法指定在页面finish的时候再执行加载图片的动作 webSettings.setLoadsImagesAutomatically(true); // 设置可以支持缩放 webSettings.setSupportZoom(true);// 设置出现缩放工具// webSettings.setBuiltInZoomControls(false); videoRef.setBackgroundColor(0); videoRef.getBackground().setAlpha(0); videoRef.loadDataWithBaseURL(null, html, "text/html", "UTF-8", null);// videoRef.loadData("……