- 신고 BottomSheet(제목/단일선택 리스트/신고 버튼) 구현 및 더보기→신고 흐름 연동 - 삭제 버튼 클릭 시 확인 다이얼로그 표시 후 확정 시 리스트에서 제거 - 신고/삭제 API 호출부는 스텁으로 남겨둠(후속 연동 예정)
25 lines
812 B
XML
25 lines
812 B
XML
<?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>
|