2016-09-18 21:21:05 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-03-29 13:08:43 +00:00
|
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android">
|
2016-09-18 21:21:05 +00:00
|
|
|
|
2018-03-29 13:08:43 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingBottom="?attr/dialog_vertical_padding"
|
|
|
|
android:paddingLeft="?attr/dialog_horizontal_padding"
|
|
|
|
android:paddingRight="?attr/dialog_horizontal_padding"
|
|
|
|
android:paddingTop="?attr/dialog_vertical_padding">
|
2016-09-18 21:21:05 +00:00
|
|
|
|
2018-03-29 13:08:43 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/text"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-03-31 10:16:56 +00:00
|
|
|
android:textAppearance="@style/TextAppearance.Conversations.Body1"/>
|
2018-03-29 13:08:43 +00:00
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/report_spam"
|
2018-04-01 07:18:12 +00:00
|
|
|
style="@style/Widget.Conversations.CheckBox"
|
2018-03-29 13:08:43 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:text="@string/report_jid_as_spammer"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</layout>
|