도전2022
안드로이드, 이미지 확대, 축소 본문
SMALL
Android imageView Zoom-in and Zoom-Out
http://stackoverflow.com/questions/6650398/android-imageview-zoom-in-and-zoom-out
http://vmustafayev4en.blogspot.kr/2011/12/android-imageview-zoom-in-zoom-out.html
이미지뷰에서 확대 축소를 했음에도 불고하고 안되는 경우가 있으면
이미지 뷰 속성을 확인해보세요.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="matrix"
android:adjustViewBounds="true"
android:layout_gravity="center"
/>
</LinearLayout>
LIST
'소스코드' 카테고리의 다른 글
슬라이딩 퍼즐 게임 소스 류종택 (0) | 2012.08.16 |
---|---|
[수집]안드로이드 개발자를 위한 10대 오픈소스 안드로이드(2D,3D)게임엔진 (0) | 2012.08.16 |
안드로이드, Hello, Android (3rd edition) 소스코드 (0) | 2012.08.11 |
안드로이드 MediaStore.Images.ImageColumns (0) | 2012.08.11 |
emailalbum Package pictures in a single file for easy emailing and viewing. (0) | 2012.08.11 |