22 lines
779 B
XML
22 lines
779 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_theme"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:background="@drawable/bg_round_corner_999_263238"
|
|
android:fontFamily="@font/pretendard_regular"
|
|
android:gravity="center"
|
|
android:paddingHorizontal="24dp"
|
|
android:paddingVertical="12dp"
|
|
android:textColor="@color/white"
|
|
android:textSize="16sp"
|
|
tools:text="자작곡" />
|
|
|
|
</FrameLayout>
|