Android ImageView Zoom-in and Zoom-Out

前端 未结 23 1904
死守一世寂寞
死守一世寂寞 2020-11-22 09:31

I want to Zoom-in and Zoom-out an Android ImageView. I tried most of the samples but in all of them the image in the ImageView itself is getting Zoomed-in and Zoomed-out, wh

23条回答
  •  忘了有多久
    2020-11-22 10:08

    Simple way:

    PhotoViewAttacher pAttacher;
    pAttacher = new PhotoViewAttacher(Your_Image_View);
    pAttacher.update();
    

    Add below line in build.gradle:

    compile 'com.commit451:PhotoView:1.2.4'
    

提交回复
热议问题