Android Study

Android ImagetView ScaleType 옵션 리스트

85chong 2023. 9. 20. 11:52
728x90
반응형
SMALL

android image view 컨트롤 할수있는 옵션

 

<ImageView
    android:id="@+id/ivImage_1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:scaleType="centerCrop"/>

 

    * android:scalyType = ""

 

        - matrix : 원본 크기 그대로 보여줌 (왼쪽상단 정렬)

        - center : 원본 크기 그대로 보여줌 (가운데 정렬)

        - centerCrop : View 영역에 공백이 있으면 채워서 보여줌 (비율유지)

        - centerInside : View 영역을 벗어나면 맞춰서 보여줌 (비율유지)

        - fitStart : View 영역에 맞게 보여줌 (왼쪽상단 정렬, 비율유지)

        - fitCenter : View 영역에 맞게 보여줌 (가운데 정렬, 비율유지)

        - fitEnd : View 영역에 맞게 보여줌 (왼쪽하단 정렬, 비율유지)

        - fitXY : View 영역을 가득 채워서 보여줌 (비율유지 안함)

 

 

 

- 끝 -