feat: 메인 홈

- 요일별 시리즈 UI 추가
This commit is contained in:
2025-07-15 17:54:53 +09:00
parent e787872cc5
commit 5c4141dad9
9 changed files with 271 additions and 5 deletions

View File

@@ -240,8 +240,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="48dp"
android:orientation="vertical"
android:visibility="gone">
android:orientation="vertical">
<TextView
android:id="@+id/tv_series_day_of_week"
@@ -257,6 +256,7 @@
android:id="@+id/rv_series_day_of_week_day"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:nestedScrollingEnabled="false"
android:layout_marginTop="16dp"
android:clipToPadding="false"
android:paddingHorizontal="24dp" />

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
android:gravity="center"
android:orientation="vertical">
<TextView
android:id="@+id/tv_day_of_week"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/bg_selectable_day_of_week"
android:fontFamily="@font/pretendard_regular"
android:gravity="center"
android:textColor="@color/white"
android:textSize="18sp"
tools:text="월" />
</LinearLayout>