feat(home): 응원 크리에이터 카드 리소스를 추가한다

This commit is contained in:
2026-06-04 20:18:00 +09:00
parent 22ac5b0b54
commit d5f46e6325
2 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@color/gray_900" />
<corners android:radius="@dimen/radius_14" />
</shape>

View File

@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/bg_home_cheer_creator_group"
android:orientation="vertical"
android:padding="@dimen/spacing_14">
<GridLayout
android:id="@+id/gl_home_cheer_creator_profiles"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:columnCount="4"
android:rowCount="2" />
<include
android:id="@+id/view_home_cheer_group_follow_all"
layout="@layout/view_home_follow_all_button"
android:layout_width="match_parent"
android:layout_height="44dp"
android:layout_marginStart="0dp"
android:layout_marginTop="@dimen/spacing_14"
android:layout_marginEnd="0dp" />
</LinearLayout>