feat(report): 캐릭터 댓글 신고 사유를 라디오 버튼으로 변경 및 비활성 시각화

- 댓글 신고 사유 리스트 변경
- 댓글 신고 사유 선택 UI를 RadioGroup/RadioButton으로 전환
- 선택 전 신고 버튼 비활성화 및 alpha 적용으로 시각적 비활성화 처리
- 선택 시 버튼 활성화 및 alpha 복구
This commit is contained in:
2025-08-22 03:04:50 +09:00
parent 7dd6d46a5f
commit 52c1f61109
2 changed files with 56 additions and 25 deletions

View File

@@ -27,7 +27,7 @@
android:layout_height="24dp"
android:layout_alignParentEnd="true"
android:contentDescription="@null"
android:src="@drawable/ic_circle_x_white" />
android:src="@drawable/ic_close_white" />
</RelativeLayout>
<View
@@ -36,8 +36,8 @@
android:layout_marginTop="12dp"
android:background="#78909C" />
<LinearLayout
android:id="@+id/ll_reason_list"
<RadioGroup
android:id="@+id/rg_reason_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
@@ -50,6 +50,8 @@
android:layout_marginTop="16dp"
android:backgroundTint="@color/color_3bb9f1"
android:enabled="false"
android:fontFamily="@font/pretendard_bold"
android:text="@string/report_button"
android:textColor="@color/white" />
android:textColor="@color/white"
android:textSize="16sp" />
</LinearLayout>