Adventure Time - Jake [안드로이드 스튜디오] PhotoView 라이브러리 설치/사용
본문 바로가기
androidstudio

[안드로이드 스튜디오] PhotoView 라이브러리 설치/사용

by bogyoi 2022. 8. 20.

사진 줌인/줌아웃 기능을 제공하는 라이브러리인 PhotoView를 사용해보려한다.

https://github.com/Baseflow/PhotoView

GitHub - Baseflow/PhotoView: Implementation of ImageView for Android that supports zooming, by various touch gestures.

Implementation of ImageView for Android that supports zooming, by various touch gestures. - GitHub - Baseflow/PhotoView: Implementation of ImageView for Android that supports zooming, by various to...

github.com



Gradle Scripts > setting.gradle 파일에

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        maven { url "https://jitpack.io" }
    }
}

저렇게 maven{ url "https://jitpack.io} 코드 한 줄을 추가해준다.



그리고, build.gradle (모듈) 파일에서

dependencies {

    implementation 'com.github.chrisbanes:PhotoView:latest.release.here'
    }

이 코드를 넣어주면 된다. 이때 latest.realease.here를 지우고 버전 입력을 해주어야한다.

나때는 2.3.0이어서

implementation 'com.github.chrisbanes:PhotoView:2.3.0'

로 입력해주었음.

아 sync now해주는거 잊지말기.
이렇게 하면 라이브러리 설치가 끝났고
사용하고자하는 액티비티 xml 파일에서 <photo...을 쳐보면 해당 라이브러리를 쓸 수 있게 된다.

'androidstudio' 카테고리의 다른 글

안드로이드 스튜디오 단축키 정리  (0) 2024.05.07