마스터Q&A 안드로이드는 안드로이드 개발자들의 질문과 답변을 위한 지식 커뮤니티 사이트입니다. 안드로이드펍에서 운영하고 있습니다. [사용법, 운영진]

리니어레이아웃에서 이미지뷰 사용 질문입니다.

0 추천

리니어레이아웃에서 이미지뷰를 사용하려고 합니다.

그런데 이미지뷰를 리니어레이아웃 가로에 맞게 크기를 match_parent 로 설정하여

크기를 맞게 설정했습니다. 그런데 이미지뷰가 다 늘러나지 않고 리니어레이아웃과

약간의 공간이 생기네요. 외그런건지 궁금합니다.

 

<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/image"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:scaleType="fitXY" />

    <TextView
        android:id="@+id/title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="테스트" />
</LinearLayout>
talcer (640 포인트) 님이 2014년 6월 26일 질문

1개의 답변

0 추천

android:adjustViewBounds="true" 를 줘보셔요

nicehee (73,100 포인트) 님이 2014년 6월 26일 답변
...