Files
sodalive-android/app/src/main/res/layout/dialog_user_report.xml
T
klaus 6cb89ef09f 폰트 이름 변경
pretendard_bold -> bold
pretendard_regular -> regular
pretendard_medium -> medium
pretendard_light -> light
2026-01-22 22:55:14 +09:00

137 lines
5.3 KiB
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: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/medium"
android:text="@string/dialog_user_report_title"
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/medium"
android:text="@string/screen_audio_content_detail_report_reason_harassment"
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/medium"
android:text="@string/screen_audio_content_detail_report_reason_privacy"
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/medium"
android:text="@string/screen_audio_content_detail_report_reason_impersonation"
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/medium"
android:text="@string/screen_audio_content_detail_report_reason_threat"
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/medium"
android:text="@string/report_reason_child_abuse_spaced"
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/medium"
android:text="@string/screen_audio_content_detail_report_reason_hate"
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/medium"
android:text="@string/screen_audio_content_detail_report_reason_spam"
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/medium"
android:text="@string/report_reason_none"
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/medium"
android:padding="6.7dp"
android:text="@string/cancel"
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/medium"
android:padding="6.7dp"
android:text="@string/report_button"
android:textColor="@color/color_3bb9f1"
android:textSize="14sp" />
</RelativeLayout>
</LinearLayout>