Files
sodalive-android/app/src/main/res/layout/fragment_audio_content_theme.xml
T
klaus 6cb89ef09f 폰트 이름 변경
pretendard_bold -> bold
pretendard_regular -> regular
pretendard_medium -> medium
pretendard_light -> light
2026-01-22 22:55:14 +09:00

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/bold"
android:text="@string/screen_audio_content_upload_theme_select"
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>