Xamarin.Bindings.PhotoView

Xamarin bindings library for the Android PhotoView library


Keywords
Xamarin, PhotoView, Android, Binding
License
Apache-2.0
Install
Install-Package Xamarin.Bindings.PhotoView -Version 2.1.2

Documentation

PhotoView Binding for Xamarin

Xamarin bindings library for the Android PhotoView library.

Plugin is available on Nuget.

Installation

Install-Package Xamarin.Bindings.PhotoView

Usage

For details, please see the original PhotoView documentation.

<com.github.chrisbanes.photoview.PhotoView
    android:id="@+id/photo_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>
var photoView = this.FindViewById<PhotoView>(Resource.Id.photo_view);

// Set image as with any ImageView. E.g.
photoView.SetImageResource(Resource.Drawable.image);

// ... or ...
Glide.With(this)
    .Load(Android.Net.Uri.Parse("https://tinyurl.com/cmlekc2"))
    .Into(photoView);

Build

To automatically download the latest AAR, update the version information in AssemlyInfo.cs and the nuspec file and then build and package the binding assembly, just run build.bat in the Visual Studio Developer Command Prompt.

License

Copyright 2017 Munir Husseini

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.