안녕하세요.
제가 tab1부분의 아래에 컨텐츠 부분에 이미지를 넣었는데 어떤 이유에서 아래의 3번째 사진과 같이 나오는
지 잘 모르겠습니다. 원래, 2번쨰 사진처럼 좀 더 화면에 좀 더 꽉 차야 하고, 그 아래에 버튼 부분을 만들 생
각인데 왜 아래와 같이 이미지가 약간 짤려보이는 현상이 나오는지 잘 모르겠습니다..
이미지는 아래의 2번째 이미지가 TAB1의 컨텐츠 부분의 화면상에 80% 센트 정도 차야하고, 그 아래에는 2번
째 이미지 사진과 같이 영화관 선택이라는 버튼이 필요합니다ㅠ 버튼 부분은, 제가 따로 만들 생각입니다.
어디가 잘못되어서, 이미지를 match_parent를 둘다 주었는데, 어떤 이유에서 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>