라이브 방 추가
This commit is contained in:
136
app/src/main/res/layout/dialog_user_report.xml
Normal file
136
app/src/main/res/layout/dialog_user_report.xml
Normal file
@@ -0,0 +1,136 @@
|
||||
<?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:background="@color/color_1b1b1b"
|
||||
android:orientation="vertical"
|
||||
android:padding="16.7dp">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:fontFamily="@font/gmarket_sans_medium"
|
||||
android:text="사용자 신고"
|
||||
android:textColor="@color/color_eeeeee"
|
||||
android:textSize="16sp" />
|
||||
|
||||
<RadioGroup
|
||||
android:id="@+id/radio_group"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginVertical="16.7dp"
|
||||
android:orientation="vertical">
|
||||
|
||||
<RadioButton
|
||||
android:id="@+id/radio_1"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:buttonTint="@color/color_909090"
|
||||
android:fontFamily="@font/gmarket_sans_medium"
|
||||
android:text="괴롭힘 및 사이버 폭력"
|
||||
android:textColor="@color/color_909090"
|
||||
android:textSize="14sp" />
|
||||
|
||||
<RadioButton
|
||||
android:id="@+id/radio_2"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:buttonTint="@color/color_909090"
|
||||
android:fontFamily="@font/gmarket_sans_medium"
|
||||
android:text="개인정보 침해"
|
||||
android:textColor="@color/color_909090"
|
||||
android:textSize="14sp" />
|
||||
|
||||
<RadioButton
|
||||
android:id="@+id/radio_3"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:buttonTint="@color/color_909090"
|
||||
android:fontFamily="@font/gmarket_sans_medium"
|
||||
android:text="명의 도용"
|
||||
android:textColor="@color/color_909090"
|
||||
android:textSize="14sp" />
|
||||
|
||||
<RadioButton
|
||||
android:id="@+id/radio_4"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:buttonTint="@color/color_909090"
|
||||
android:fontFamily="@font/gmarket_sans_medium"
|
||||
android:text="폭력적 위협"
|
||||
android:textColor="@color/color_909090"
|
||||
android:textSize="14sp" />
|
||||
|
||||
<RadioButton
|
||||
android:id="@+id/radio_5"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:buttonTint="@color/color_909090"
|
||||
android:fontFamily="@font/gmarket_sans_medium"
|
||||
android:text="아동 학대"
|
||||
android:textColor="@color/color_909090"
|
||||
android:textSize="14sp" />
|
||||
|
||||
<RadioButton
|
||||
android:id="@+id/radio_6"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:buttonTint="@color/color_909090"
|
||||
android:fontFamily="@font/gmarket_sans_medium"
|
||||
android:text="보호 대상 집단에 대한 증오심 표현"
|
||||
android:textColor="@color/color_909090"
|
||||
android:textSize="14sp" />
|
||||
|
||||
<RadioButton
|
||||
android:id="@+id/radio_7"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:buttonTint="@color/color_909090"
|
||||
android:fontFamily="@font/gmarket_sans_medium"
|
||||
android:text="스팸 및 사기"
|
||||
android:textColor="@color/color_909090"
|
||||
android:textSize="14sp" />
|
||||
|
||||
<RadioButton
|
||||
android:id="@+id/radio_8"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:buttonTint="@color/color_909090"
|
||||
android:fontFamily="@font/gmarket_sans_medium"
|
||||
android:text="나에게 해당하는 문제 없음"
|
||||
android:textColor="@color/color_909090"
|
||||
android:textSize="14sp" />
|
||||
|
||||
</RadioGroup>
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_cancel"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginEnd="16.7dp"
|
||||
android:layout_toStartOf="@+id/tv_report"
|
||||
android:fontFamily="@font/gmarket_sans_medium"
|
||||
android:padding="6.7dp"
|
||||
android:text="취소"
|
||||
android:textColor="@color/color_eeeeee"
|
||||
android:textSize="14sp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_report"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:layout_marginEnd="6.7dp"
|
||||
android:fontFamily="@font/gmarket_sans_medium"
|
||||
android:padding="6.7dp"
|
||||
android:text="신고"
|
||||
android:textColor="@color/color_9970ff"
|
||||
android:textSize="14sp" />
|
||||
</RelativeLayout>
|
||||
|
||||
</LinearLayout>
|
Reference in New Issue
Block a user