Android Studio

(Android Studio) 이미지 뷰 관련 scaleType

SAFE 2016. 11. 14. 12:58

출처 : 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