feat(creator-channel): FanTalk 글 입력 기본 리소스를 추가한다

This commit is contained in:
2026-07-08 03:44:31 +09:00
parent 34266abd90
commit 87f6bec138
4 changed files with 120 additions and 0 deletions
@@ -0,0 +1,102 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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="match_parent"
android:layout_height="match_parent"
android:background="@color/black">
<TextView
android:id="@+id/tv_creator_channel_fantalk_write_cancel"
style="@style/Typography.Body2"
android:layout_width="wrap_content"
android:layout_height="60dp"
android:layout_marginStart="@dimen/spacing_14"
android:gravity="center"
android:includeFontPadding="false"
android:text="@string/creator_channel_fantalk_write_cancel"
android:textColor="@color/white"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/tv_creator_channel_fantalk_write_send"
style="@style/Typography.Body2"
android:layout_width="wrap_content"
android:layout_height="44dp"
android:layout_marginEnd="@dimen/spacing_14"
android:background="@drawable/bg_creator_channel_fantalk_write_send_disabled"
android:enabled="false"
android:gravity="center"
android:includeFontPadding="false"
android:minWidth="68dp"
android:paddingHorizontal="@dimen/spacing_14"
android:text="@string/creator_channel_fantalk_write_send"
android:textColor="@color/gray_500"
app:layout_constraintBottom_toBottomOf="@id/tv_creator_channel_fantalk_write_cancel"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="@id/tv_creator_channel_fantalk_write_cancel" />
<EditText
android:id="@+id/et_creator_channel_fantalk_write_content"
style="@style/Typography.Body2"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginHorizontal="@dimen/spacing_14"
android:layout_marginTop="@dimen/spacing_20"
android:background="@android:color/transparent"
android:gravity="top|start"
android:hint="@string/creator_channel_fantalk_write_hint"
android:imeOptions="actionDone"
android:includeFontPadding="false"
android:inputType="textMultiLine|textCapSentences"
android:maxLength="500"
android:minHeight="180dp"
android:padding="0dp"
android:textColor="@color/white"
android:textColorHint="@color/gray_500"
app:layout_constraintBottom_toTopOf="@id/layout_creator_channel_fantalk_write_info_bar"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tv_creator_channel_fantalk_write_cancel"
tools:text="크리에이터를 향한 응원 메시지를 입력합니다." />
<LinearLayout
android:id="@+id/layout_creator_channel_fantalk_write_info_bar"
android:layout_width="0dp"
android:layout_height="52dp"
android:background="@color/black"
android:gravity="center_vertical|end"
android:orientation="horizontal"
android:paddingHorizontal="@dimen/spacing_14"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent">
<TextView
android:id="@+id/tv_creator_channel_fantalk_write_count"
style="@style/Typography.Body2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:includeFontPadding="false"
android:textColor="@color/white"
tools:text="23" />
<TextView
android:id="@+id/tv_creator_channel_fantalk_write_count_limit"
style="@style/Typography.Body2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:includeFontPadding="false"
android:text="/500자"
android:textColor="@color/gray_500" />
</LinearLayout>
<View
android:layout_width="0dp"
android:layout_height="1dp"
android:background="@color/gray_700"
app:layout_constraintBottom_toTopOf="@id/layout_creator_channel_fantalk_write_info_bar"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>