안드로이드 추천 오픈소스2) PhotoView
Android/Open Source

안드로이드 추천 오픈소스2) PhotoView


https://github.com/chrisbanes/PhotoView

 

이미지를 줌인 줌아웃을 해야할 필요가 있을 때 쓰면 좋은 라이브러리이며

스크롤링이 필요한 레이아웃 내에서도 부드럽게 잘 작동한다

 

1) 기본적인 사용방법

 

in build.gradle (Module:app)

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

 

in XML

<com.github.chrisbanes.photoview.PhotoView
    android:id="@+id/photo_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>

Hot Ez Ex) 기능들은이미 Custom ImageView처럼 구현되어 있기 때문에 그냥 ImageView 사용하듯이 사용하면 된다