我正在使用以下代码,它只放大loadData。如何在里面放大图像?提前谢谢!
WebView web = (WebView) findViewById(R.id.myid);
web.loadUrl("file:///android_asset/image.jpg");
web.getSettings().setBuiltInZoomControls(true);
web.setBackgroundColor(0);
web.setVisibility(ImageView.VISIBLE);
web.setBackgroundResource(R.drawable.myimage);
答案 0 :(得分:6)
我终于通过在一个取代loadUrl()的html文件中使用image.jpg来实现它。