39 lines
1.4 KiB
XML
39 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/rl_notice"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="26.7dp"
|
|
android:layout_marginTop="26.7dp"
|
|
android:fontFamily="@font/gmarket_sans_bold"
|
|
android:text="테마 선택"
|
|
android:textColor="@color/white"
|
|
android:textSize="18.3sp" />
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_close"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentEnd="true"
|
|
android:contentDescription="@null"
|
|
android:padding="29dp"
|
|
android:src="@drawable/ic_close_white" />
|
|
</RelativeLayout>
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rv_themes"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_below="@+id/rl_notice"
|
|
android:layout_marginHorizontal="20dp" />
|
|
</RelativeLayout>
|