I have one requirement in which i have to zoom in and zoom out images on pinch.. Please if anyone can suggest me pinch zoom functionality for Imageview.????
Simply you can do the following to get pinch zoom,
Place your image in assets folder and provide this code,
String imageUrl = "file:///android_asset/abc.png";
WebView wv = (WebView) findViewById(R.id.yourwebview);
wv.getSettings().setBuiltInZoomControls(true);
wv.loadUrl(imageUrl);