안녕하세요.
제가 지금, 탭호스트의 한 화면을 구현을 하고 있는데, 이상하게도 이미지가,
바로 아래의 첫번째 사진처럼 화면에서 일정 공간을 차지해야하는데 , 그것이 아니라, 2번째 사진처럼 애매한
위치에서 지정을 하고 있어서 문제가 많습니다.
첫번째 이미지와 같이, 아래의 사진이 전체적으로 골고루 분포하고 그 아래에 버튼을 삽입하려고 하는데
사진과 레이아웃과 스크롤뷰에 전부 match값을 줘보아도 항상 저 위치에 고정되어있어 .. 심란합니다 ㅠ
어디가 문제인지 코드한번 찝어주시면 정말 감사드리겠습니다 ㅠ
사진에 대한 이미지는 3번째 이미지를 사용하였습니다.
아래에 코드를 한번 적어보겠습니다 ㅠ 8000자가 넘는것은 아래에 댓글에 추가해보았습니다ㅠ



<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_date_and__seat"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="ex.real_project.Date_and_Seat">
<RelativeLayout
android:id="@+id/Date_and_Seat_Toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/Before_Date_and_Seat_Image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginBottom="3dp"
android:layout_marginLeft="3dp"
android:background="@drawable/before_image" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="영화별 예매"
android:textSize="30dp"
android:textStyle="bold"
android:layout_marginTop="10dp"
android:layout_centerHorizontal="true" />
</RelativeLayout>