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

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/gray_800" />
<corners android:radius="18dp" />
</shape>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/soda_400" />
<corners android:radius="18dp" />
</shape>

View File

@@ -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>

View File

@@ -459,6 +459,14 @@
<string name="character_comment_error_empty">내용을 입력하세요</string>
<string name="character_comment_error_report_reason">신고 사유를 입력하세요</string>
<string name="character_comment_report_submitted">신고가 접수되었습니다.</string>
<string name="creator_channel_fantalk_write_cancel">취소</string>
<string name="creator_channel_fantalk_write_hint">응원 메시지를 입력해 주세요.</string>
<string name="creator_channel_fantalk_write_send">보내기</string>
<string name="creator_channel_fantalk_write_sending">전송 중</string>
<string name="creator_channel_fantalk_write_exit_title">입력 종료</string>
<string name="creator_channel_fantalk_write_exit_desc">입력을 종료할까요?\n지금 나가면 입력한 내용이 저장되지 않아요.</string>
<string name="creator_channel_fantalk_write_exit_cancel">계속 작성</string>
<string name="creator_channel_fantalk_write_exit_confirm">종료</string>
<string name="character_comment_load_failed">@string/common_error_unknown</string>
<string name="character_comment_report_reason_commercial">원치 않는 상업성 콘텐츠 또는 스팸</string>
<string name="character_comment_report_reason_child_abuse">아동 학대</string>