본문 바로가기
Android

[Open Source] 이미지 줌 인/아웃 - TouchImageView

by kldaji 2021. 7. 6.

https://github.com/MikeOrtiz/TouchImageView

 

MikeOrtiz/TouchImageView

Adds touch functionality to Android ImageView. Contribute to MikeOrtiz/TouchImageView development by creating an account on GitHub.

github.com

 

1. gradle 추가 (21.07.06 기준)

// build.gradle (Project: $ProjectName)
allprojects {
    repositories {
        ...
        maven { url 'https://jitpack.io' }
    }
}
// build.gradle (Module $ProjectName)
dependencies {
    implementation 'com.github.MikeOrtiz:TouchImageView:1.4.1'
}

 

2. xml 추가

<com.ortiz.touchview.TouchImageView
	android:id="@+id/touch_image"
	android:layout_width="match_parent"
	android:layout_height="match_parent" />

 

3. 특징

- 비슷한 기능을 하는 PhotoView에 비해 좀 더 flexible한 이미지 줌 인/아웃이 가능하다.

 

4. DEMO 영상

추후에 추가할 예정이다.