<?
xml
version
=
"1.0"
encoding
=
"utf-8"
?>
<
androidx.constraintlayout.widget.ConstraintLayout
android:id
=
"@+id/constraintlayout"
android:layout_width
=
"match_parent"
android:layout_height
=
"match_parent"
android:background
=
"@drawable/fragment_background"
<
androidx.coordinatorlayout.widget.CoordinatorLayout
android:id
=
"@+id/coordinator"
android:layout_width
=
"match_parent"
android:layout_height
=
"wrap_content"
app:layout_constraintTop_toTopOf
=
"parent"
app:layout_constraintLeft_toLeftOf
=
"parent"
app:layout_constraintRight_toRightOf
=
"parent"
>
<
com.google.android.material.appbar.AppBarLayout
android:layout_width
=
"match_parent"
android:layout_height
=
"wrap_content"
android:background
=
"@android:color/transparent"
android:theme
=
"@style/AppTheme.AppBarOverlay"
app:elevation
=
"0dp"
>
<
androidx.appcompat.widget.Toolbar
android:layout_width
=
"match_parent"
android:layout_height
=
"?attr/actionBarSize"
app:popupTheme
=
"@style/AppTheme.PopupOverlay"
/>
</
com.google.android.material.appbar.AppBarLayout
>
</
androidx.coordinatorlayout.widget.CoordinatorLayout
>
<
ImageView
android:id
=
"@+id/movie_post"
android:layout_width
=
"wrap_content"
android:layout_height
=
"wrap_content"
app:layout_constraintTop_toBottomOf
=
"@+id/coordinator"
app:layout_constraintLeft_toLeftOf
=
"parent"
app:layout_constraintRight_toRightOf
=
"parent"
android:src
=
"@drawable/movie1"
/>
<
TextView
android:id
=
"@+id/title"
android:layout_width
=
"wrap_content"
android:layout_height
=
"wrap_content"
app:layout_constraintTop_toBottomOf
=
"@+id/movie_post"
app:layout_constraintLeft_toLeftOf
=
"parent"
app:layout_constraintRight_toRightOf
=
"parent"
app:layout_constraintBottom_toTopOf
=
"@id/slide_bar"
android:layout_marginTop
=
"20dp"
android:text
=
"1. 군 도"
android:textSize
=
"30dp"
android:textColor
=
"@color/white"
/>
<
ImageView
android:id
=
"@+id/slide_bar"
android:layout_width
=
"wrap_content"
android:layout_height
=
"wrap_content"
app:layout_constraintTop_toBottomOf
=
"@+id/title"
app:layout_constraintLeft_toLeftOf
=
"parent"
app:layout_constraintRight_toRightOf
=
"parent"
app:layout_constraintBottom_toTopOf
=
"@+id/linear1"
android:layout_marginTop
=
"10dp"
android:src
=
"@drawable/home_slider"
/>
<
LinearLayout
android:id
=
"@+id/linear1"
android:layout_width
=
"wrap_content"
android:layout_height
=
"wrap_content"
android:orientation
=
"horizontal"
app:layout_constraintTop_toBottomOf
=
"@id/slide_bar"
app:layout_constraintLeft_toLeftOf
=
"parent"
app:layout_constraintRight_toRightOf
=
"parent"
android:layout_marginTop
=
"10dp"
>
<
TextView
android:id
=
"@+id/reserve_rating"
android:layout_width
=
"wrap_content"
android:layout_height
=
"wrap_content"
android:text
=
"예매율 61.8%"
android:textSize
=
"20dp"
android:textColor
=
"@color/white"
/>
<
View
android:layout_width
=
"2dp"
android:layout_height
=
"17dp"
android:layout_gravity
=
"center"
android:layout_marginLeft
=
"5dp"
android:layout_marginRight
=
"5dp"
android:background
=
"@color/white"
/>
<
TextView
android:layout_width
=
"wrap_content"
android:layout_height
=
"wrap_content"
android:text
=
"15세 관람가"
android:textSize
=
"20dp"
android:textColor
=
"@color/white"
/>
<
View
android:layout_width
=
"2dp"
android:layout_height
=
"17dp"
android:layout_gravity
=
"center"
android:layout_marginLeft
=
"5dp"
android:layout_marginRight
=
"5dp"
android:background
=
"@color/white"
/>
<
TextView
android:layout_width
=
"wrap_content"
android:layout_height
=
"wrap_content"
android:text
=
"D-1"
android:textSize
=
"20dp"
android:textColor
=
"@color/white"
/>
</
LinearLayout
>
<
Button
android:id
=
"@+id/see_detail_btn"
android:layout_width
=
"150dp"
android:layout_height
=
"wrap_content"
app:layout_constraintTop_toBottomOf
=
"@+id/linear1"
app:layout_constraintLeft_toLeftOf
=
"parent"
app:layout_constraintRight_toRightOf
=
"parent"
app:layout_constraintBottom_toBottomOf
=
"parent"
android:layout_marginTop
=
"20dp"
android:text
=
"상세보기"
android:textSize
=
"20dp"
android:textColor
=
"@color/white"
android:background
=
"@drawable/detail_button_background"
/>
</
androidx.constraintlayout.widget.ConstraintLayout
>