Zoom ImageView in android like Instagram

前端 未结 3 1514
臣服心动
臣服心动 2021-02-03 11:25

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, t

3条回答
  •  隐瞒了意图╮
    2021-02-03 11:56

    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();
    

提交回复
热议问题