84 lines
3.4 KiB
XML
84 lines
3.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout 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"
|
|
tools:background="@color/color_131313">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_back"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginStart="13.3dp"
|
|
android:drawablePadding="6.7dp"
|
|
android:ellipsize="end"
|
|
android:fontFamily="@font/pretendard_bold"
|
|
android:gravity="center"
|
|
android:minHeight="48dp"
|
|
android:text="@string/screen_audition_title"
|
|
android:textColor="@color/color_eeeeee"
|
|
android:textSize="21.3sp"
|
|
app:drawableStartCompat="@drawable/ic_back"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
tools:ignore="RelativeOverlap" />
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_notification"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="13.3dp"
|
|
android:layout_marginEnd="13.3dp"
|
|
android:contentDescription="@null"
|
|
android:src="@drawable/btn_audition_notification_normal"
|
|
android:visibility="gone"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/rl_how_to_use"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="13.3dp"
|
|
android:layout_marginVertical="15dp"
|
|
android:background="@drawable/bg_round_corner_5_3_222222"
|
|
android:paddingHorizontal="13.3dp"
|
|
android:paddingVertical="10dp"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@+id/tv_back">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:fontFamily="@font/pretendard_medium"
|
|
android:text="@string/screen_audition_how_to_use"
|
|
android:textColor="@color/white"
|
|
android:textSize="13.3sp" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_centerVertical="true"
|
|
android:fontFamily="@font/pretendard_medium"
|
|
android:text="@string/screen_audition_how_to_use_more"
|
|
android:textColor="@color/white"
|
|
android:textSize="13.3sp" />
|
|
</RelativeLayout>
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rv_audition"
|
|
android:layout_width="0dp"
|
|
android:layout_height="0dp"
|
|
android:clipToPadding="false"
|
|
android:padding="13.3dp"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@+id/rl_how_to_use" />
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|