도전2022

안드로이드, 이미지 확대, 축소 본문

소스코드

안드로이드, 이미지 확대, 축소

hotdigi 2012. 8. 11. 08:39

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>