반응형
[안드로이드] 이미지뷰 핀치줌, 확대, 축소
1. build.gradle (Project: project명)
allprojects{} 안에 repositories {}에 maven { url "https://jitpack.io" } 추가
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
2. build.gradle (Module: app)
dependencies{}에 compile 'com.github.chrisbanes:PhotoView:1.3.0' 추가
compile 'com.github.chrisbanes:PhotoView:1.3.0'
3. Activity 에서 적용하기
PhotoViewAttacher attacher;
ImageView iv = (ImageView)findViewById(R.id.iv);
attacher = new PhotoViewAttacher(iv);
PhotoViewAttacher attacher;
ImageView iv = (ImageView)findViewById(R.id.iv);
attacher = new PhotoViewAttacher(iv);
적용 끝!!!!!!
[출처 : https://github.com/chrisbanes/PhotoView ]
반응형
'IT > 안드로이드+JAVA' 카테고리의 다른 글
[안드로이드] 암호, 비밀번호 기능 라이브러리 (0) | 2016.10.05 |
---|---|
[안드로이드] Bitmap 객체를 JPEG 이미지로 저장하기 (0) | 2016.10.04 |
[안드로이드] 아이콘 크기 mdpi, hdpi, xhdpi, xxhdpi, xxxhdpi (0) | 2016.10.04 |
[안드로이드] 화면캡쳐 방지 소스코드 (0) | 2016.10.03 |
[안드로이드] IllegalArgumentException, contains a path separator (0) | 2016.09.30 |