106 lines
4.5 KiB
XML
106 lines
4.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
tools:background="@color/black">
|
|
|
|
<include
|
|
android:id="@+id/toolbar"
|
|
layout="@layout/detail_toolbar" />
|
|
|
|
<androidx.core.widget.NestedScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:fillViewport="true">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingHorizontal="13.3dp"
|
|
android:paddingVertical="8dp">
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center">
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_cover"
|
|
android:layout_width="0dp"
|
|
android:layout_height="0dp"
|
|
android:contentDescription="@null"
|
|
android:scaleType="centerCrop"
|
|
app:layout_constraintDimensionRatio="1000:530"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
tools:src="@drawable/ic_launcher_background" />
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_information_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="15dp"
|
|
android:fontFamily="@font/gmarket_sans_bold"
|
|
android:text="오디션 정보"
|
|
android:textColor="@color/color_eeeeee"
|
|
android:textSize="14.7sp"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@+id/iv_cover" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_information"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="15dp"
|
|
android:ellipsize="end"
|
|
android:fontFamily="@font/gmarket_sans_medium"
|
|
android:lineSpacingExtra="5dp"
|
|
android:maxLines="3"
|
|
android:textColor="@color/color_777777"
|
|
android:textSize="13.3sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_open"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_marginTop="7dp"
|
|
android:drawablePadding="6.7dp"
|
|
android:fontFamily="@font/gmarket_sans_medium"
|
|
android:gravity="center"
|
|
android:text="펼치기"
|
|
android:textColor="@color/color_bbbbbb"
|
|
android:textSize="12sp"
|
|
app:drawableStartCompat="@drawable/ic_live_detail_bottom"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@+id/tv_information" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_role_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="18dp"
|
|
android:fontFamily="@font/gmarket_sans_bold"
|
|
android:text="오디션 캐릭터"
|
|
android:textColor="@color/color_eeeeee"
|
|
android:textSize="14.7sp" />
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rv_role"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:clipToPadding="false"
|
|
android:nestedScrollingEnabled="false"
|
|
android:paddingVertical="15dp" />
|
|
</LinearLayout>
|
|
</androidx.core.widget.NestedScrollView>
|
|
</LinearLayout>
|