feat(creator): 채널 후원 empty 리소스를 추가한다

This commit is contained in:
2026-06-16 19:21:45 +09:00
parent f6395b5a3e
commit 6ba5bf2cb1
5 changed files with 61 additions and 0 deletions
@@ -1,5 +1,6 @@
<?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="match_parent"
android:layout_height="wrap_content"
android:background="@color/black"
@@ -28,6 +29,55 @@
android:orientation="horizontal" />
</HorizontalScrollView>
<LinearLayout
android:id="@+id/layout_donation_empty"
android:layout_width="match_parent"
android:layout_height="196dp"
android:layout_marginHorizontal="@dimen/spacing_14"
android:layout_marginTop="@dimen/spacing_14"
android:background="@drawable/bg_feed_card"
android:orientation="vertical"
android:padding="@dimen/spacing_20"
android:visibility="gone"
tools:visibility="visible">
<TextView
android:id="@+id/tv_donation_empty_title"
style="@style/Typography.Heading1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:includeFontPadding="false"
android:text="@string/creator_channel_donation_empty_title"
android:textColor="@color/white" />
<LinearLayout
android:id="@+id/layout_donation_empty_button"
android:layout_width="match_parent"
android:layout_height="44dp"
android:layout_marginTop="42dp"
android:background="@drawable/bg_creator_channel_donation_empty_button"
android:gravity="center"
android:orientation="horizontal">
<ImageView
android:layout_width="@dimen/spacing_20"
android:layout_height="@dimen/spacing_20"
android:contentDescription="@null"
android:src="@drawable/ic_new_donation"
android:tint="@color/black" />
<TextView
style="@style/Typography.Body2"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginStart="@dimen/spacing_6"
android:gravity="center"
android:text="@string/creator_channel_donation_button"
android:textColor="@color/black" />
</LinearLayout>
</LinearLayout>
<LinearLayout
android:id="@+id/layout_donation_button"
android:layout_width="match_parent"