1<?xml version="1.0" encoding="utf-8"?>
2<layout xmlns:android="http://schemas.android.com/apk/res/android">
3
4 <LinearLayout
5 android:layout_width="match_parent"
6 android:layout_height="match_parent"
7 android:orientation="vertical"
8 android:padding="?dialogPreferredPadding">
9
10 <TextView
11 android:id="@+id/text"
12 android:layout_width="wrap_content"
13 android:layout_height="wrap_content"
14 android:textAppearance="?textAppearanceBodyMedium" />
15
16 <CheckBox
17 android:id="@+id/report_spam"
18 android:layout_width="wrap_content"
19 android:layout_height="wrap_content"
20 android:layout_marginTop="8dp"
21 android:text="@string/report_jid_as_spammer" />
22
23 </LinearLayout>
24</layout>