크리에이터 채널

- 메뉴 설정 버튼 추가
This commit is contained in:
2024-10-07 23:41:59 +09:00
parent 3c178dbb96
commit 38e4122570
6 changed files with 52 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
<?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"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="0dp"
android:layout_height="0dp"
android:gravity="center"
android:text="메뉴 설정"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@@ -37,6 +37,20 @@
android:text="룰렛 설정"
android:textColor="@color/white"
android:textSize="14.7sp" />
<TextView
android:id="@+id/tv_setting_menu"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/bg_round_corner_4_7_3bb9f1"
android:fontFamily="@font/gmarket_sans_bold"
android:gravity="center"
android:paddingVertical="17dp"
android:layout_marginStart="8dp"
android:text="메뉴 설정"
android:textColor="@color/white"
android:textSize="14.7sp" />
</LinearLayout>
<androidx.recyclerview.widget.RecyclerView