feat: 메인 라이브, 메인 홈

- 섹션 제목 크기 26 -> 24
- 오디션 배너 변경
- 추천 채널 아이템 bg 톤다운
This commit is contained in:
2025-07-19 04:02:29 +09:00
parent d7cc874684
commit c55cc68f5c
18 changed files with 91 additions and 80 deletions

View File

@@ -1,52 +1,59 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="133dp"
android:layout_height="188dp"
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="144dp"
android:layout_height="204dp"
android:layout_marginTop="20dp"
android:background="@drawable/bg_home_creator"
android:gravity="center"
android:orientation="vertical">
android:orientation="vertical"
android:padding="16dp">
<ImageView
android:id="@+id/iv_profile"
android:layout_width="70dp"
android:layout_height="70dp"
android:contentDescription="@null" />
android:layout_width="84dp"
android:layout_height="84dp"
android:contentDescription="@null"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/tv_nickname"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginVertical="8dp"
android:fontFamily="@font/pretendard_regular"
android:gravity="center"
android:textColor="@color/white"
android:textSize="18sp"
android:textSize="16sp"
app:layout_constraintBottom_toTopOf="@+id/tv_follow"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/iv_profile"
tools:text="도화" />
<TextView
android:layout_width="wrap_content"
android:id="@+id/tv_follow"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:background="@drawable/bg_round_corner_999_white"
android:fontFamily="@font/pretendard_regular"
android:text="팔로워"
android:textColor="#78909C"
android:textSize="14sp" />
<TextView
android:id="@+id/tv_follower"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="4dp"
android:fontFamily="@font/pretendard_regular"
android:textColor="#78909C"
android:gravity="center"
android:paddingVertical="4dp"
android:text="팔로우"
android:textColor="#263238"
android:textSize="14sp"
tools:text="111" />
</LinearLayout>
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
<ImageView
android:id="@+id/iv_crown"