Android
iOS
 

Zoom a ScrollView

This recipe shows how to load a large image into a scroll view and allow the user to pinch-zoom.

Recipe

To display an image inside a scroll view and support the pinch-to-zoom gesture:

1. Add the image to your Xamarin.iOS project and ensure the Build Action is set to Content. The example code loads the image “halloween.jpg”

2. Declare class level fields for a UIScrollView and UIImageVIew

UIScrollView scrollView;
UIImageView imageView;

3. Create a UIScrollView and it to the View Controller:

scrollView = new UIScrollView (
    new RectangleF (0, 0, View.Frame.Width
    , View.Frame.Height - NavigationController.NavigationBar.Frame.Height));/
View.AddSubview (scrollView);

4. Create a UIImageView and it to the Scroll View:

imageView = new UIImageView (UIImage.FromFile ("halloween.jpg"));
scrollView.ContentSize = imageView.Image.Size;
scrollView.AddSubview (imageView);

5. Set the zoom properties:

scrollView.MaximumZoomScale = 3f;
scrollView.MinimumZoomScale = .1f;
scrollView.ViewForZoomingInScrollView += (UIScrollView sv) => { return imageView; };

Only a portion of the image will appear on the iPhone screen. The user can pan around the image by dragging or zoom with the pinch gesture.

To test the pinch gesture in the simulator, hold down the option key while dragging – two grey circles will be displayed to illustrate the simulated pinch gesture: