본문 바로가기

Android Studio

(Android Studio) 이미지 뷰 관련 scaleType

336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

출처 : http://androcode.tistory.com/22


이미지 뷰 관련


android:scaleType="fitXY"

android:adjustViewBounds="true"


1
2
3
4
5
6
7
8
<com.android.volley.toolbox.NetworkImageView 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:adjustViewBounds="true"
    android:id="@+id/iv_picture"
    android:scaleType="fitXY"
    android:background="@drawable/photo_bg_default_s"
    android:layout_marginTop="10dp" />
cs