feat(character-comment): 신고 BottomSheet 추가 및 삭제 확인 팝업 도입

- 신고 BottomSheet(제목/단일선택 리스트/신고 버튼) 구현 및 더보기→신고 흐름 연동
- 삭제 버튼 클릭 시 확인 다이얼로그 표시 후 확정 시 리스트에서 제거
- 신고/삭제 API 호출부는 스텁으로 남겨둠(후속 연동 예정)
This commit is contained in:
2025-08-20 01:20:12 +09:00
parent d4ec2fbdef
commit 52ff0c82cb
6 changed files with 208 additions and 12 deletions

View 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:orientation="horizontal"
android:paddingVertical="12dp">
<TextView
android:id="@+id/tv_reason"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textColor="@color/white"
android:textSize="15sp"
android:text=""/>
<ImageView
android:id="@+id/iv_check"
android:layout_width="20dp"
android:layout_height="20dp"
android:contentDescription="@null"
android:src="@android:drawable/checkbox_on_background"
android:visibility="gone"/>
</LinearLayout>