how to implement zoom ImageView in android using PhotoView library

Опубликовано: 13 Апрель 2026
на канале: Android Development Tutorials
385
4

Add this in your root build.gradle file (not your module build.gradle file):

allprojects {
repositories {
maven { url "https://jitpack.io" }
}
}
Then, add the library to your module build.gradle

dependencies {
implementation 'com.github.chrisbanes:PhotoView:2.3.0'
}