allow zooming up to 20x

This commit is contained in:
tibbi 2016-02-21 18:22:14 +01:00
parent e8da1424ad
commit eed77d4738
1 changed files with 1 additions and 0 deletions

View File

@ -35,6 +35,7 @@ public class MyPagerAdapter extends PagerAdapter {
final PhotoView photoView = new PhotoView(context);
Glide.with(context).load(paths.get(position)).fitCenter().crossFade().into(photoView);
container.addView(photoView);
photoView.setMaximumScale(20f);
return photoView;
}