리니어레이아웃에서 이미지뷰를 사용하려고 합니다.
그런데 이미지뷰를 리니어레이아웃 가로에 맞게 크기를 match_parent 로 설정하여
크기를 맞게 설정했습니다. 그런데 이미지뷰가 다 늘러나지 않고 리니어레이아웃과
약간의 공간이 생기네요. 외그런건지 궁금합니다.
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>