Zoom ImageView in android like Instagram

2020-05-24 03:04发布

How can I zoom ImageView like Instagram. I mean changing the size of imageview, not zooming the image inside the Imageview.

For zooming the image inside the Imageview, there are a lot of samples but I want something like Instagram image zooming

Any code or hint? Thanks.

3条回答
虎瘦雄心在
2楼-- · 2020-05-24 03:10

I would recommend these two libraries:

  1. PhotoView

  2. ImageViewZoom

For PhotoView, you just have to create an attacher and "attach" it to your ImageView.

Some code

// After getting your imageImage view, attach it like the following
PhotoViewAttacher yourAttacher = new PhotoViewAttacher(yourImageView);

With just this code, you'll be able to zoom in/out/whatever on yourImageView. Check the links above for more details.

查看更多
3楼-- · 2020-05-24 03:16

thanks

I have added this to my gradle.build

 compile 'it.sephiroth.android.library.imagezoom:imagezoom:2.2.5'

and then using this view

  <it.sephiroth.android.library.imagezoom.ImageViewTouch
    android:id="@+id/mp3Image"
    android:adjustViewBounds="true"
    android:layout_width="346dp"
    android:layout_height="356dp"
    android:scaleType="fitCenter" />

and the below code, the zoom came to my app

   myImage = (ImageViewTouch) findViewById(R.id.mp3Image);
    myImage.setDisplayType(ImageViewTouchBase.DisplayType.FIT_IF_BIGGER);
查看更多
Ridiculous、
4楼-- · 2020-05-24 03:29

I recommend Zoomy, very simple and functional.

Just add the following to your current ImageView:

Zoomy.Builder builder = new Zoomy.Builder(this).target(mZoomableView);
builder.register();
查看更多
登录 后发表回答