Zoom ImageView in android like Instagram

前端 未结 3 1547
臣服心动
臣服心动 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条回答
  •  旧时难觅i
    2021-02-03 12:17

    thanks

    I have added this to my gradle.build

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

    and then using this view

      
    

    and the below code, the zoom came to my app

       myImage = (ImageViewTouch) findViewById(R.id.mp3Image);
        myImage.setDisplayType(ImageViewTouchBase.DisplayType.FIT_IF_BIGGER);
    

提交回复
热议问题