feat(home): 응원 크리에이터 카드 리소스를 추가한다
This commit is contained in:
@@ -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>
|
||||
24
app/src/main/res/layout/item_home_cheer_creator_group.xml
Normal file
24
app/src/main/res/layout/item_home_cheer_creator_group.xml
Normal 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>
|
||||
Reference in New Issue
Block a user