2017-03-01 03:38:47 +01:00
|
|
|
<?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">
|
|
|
|
|
|
|
|
<TextView
|
2017-12-01 21:52:10 +01:00
|
|
|
android:id="@+id/report_status_content"
|
2017-03-01 03:38:47 +01:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2017-12-01 21:52:10 +01:00
|
|
|
android:padding="8dp"
|
|
|
|
android:textSize="?attr/status_text_medium" />
|
2017-03-01 03:38:47 +01:00
|
|
|
|
2017-03-01 06:36:15 +01:00
|
|
|
<CheckBox
|
2017-12-01 21:52:10 +01:00
|
|
|
android:id="@+id/report_status_check_box"
|
2017-03-01 03:38:47 +01:00
|
|
|
android:layout_width="wrap_content"
|
2017-03-01 06:36:15 +01:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_margin="16dp" />
|
2017-03-01 03:38:47 +01:00
|
|
|
|
|
|
|
</LinearLayout>
|