2017-01-13 23:43:17 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-05-16 13:57:37 +02:00
|
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-01-13 23:43:17 +01:00
|
|
|
xmlns:card_view="http://schemas.android.com/apk/res-auto"
|
2021-02-03 22:40:13 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-01-13 23:43:17 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
2017-05-24 19:42:23 +02:00
|
|
|
card_view:cardBackgroundColor="?android:colorBackground">
|
2017-01-13 23:43:17 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2022-02-10 19:21:42 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/date"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_marginTop="5dp"
|
|
|
|
android:layout_marginRight="5dp"
|
|
|
|
android:layout_marginBottom="5dp"
|
2022-03-11 12:59:00 +01:00
|
|
|
android:background="?android:attr/dividerHorizontal"
|
2022-02-10 19:21:42 +01:00
|
|
|
android:gravity="center"
|
|
|
|
android:text="1.1.2000"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
tools:ignore="HardcodedText" />
|
|
|
|
|
2017-01-13 23:43:17 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:baselineAligned="true"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<com.joanzapata.iconify.widget.IconTextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
2021-02-03 22:40:13 +01:00
|
|
|
android:gravity="center"
|
|
|
|
android:paddingStart="10dp"
|
|
|
|
android:paddingEnd="5dp"
|
|
|
|
android:text="{fa-clock-o}"
|
|
|
|
tools:ignore="HardcodedText" />
|
2017-01-13 23:43:17 +01:00
|
|
|
|
|
|
|
<TextView
|
2022-02-10 19:21:42 +01:00
|
|
|
android:id="@+id/time"
|
2017-01-13 23:43:17 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-02-03 22:40:13 +01:00
|
|
|
android:paddingStart="10dp"
|
2017-01-13 23:43:17 +01:00
|
|
|
android:text="1.1.2000 18:00"
|
2021-02-03 22:40:13 +01:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
tools:ignore="HardcodedText,RtlSymmetry" />
|
2017-01-13 23:43:17 +01:00
|
|
|
|
|
|
|
<TextView
|
2021-02-03 22:40:13 +01:00
|
|
|
android:id="@+id/low"
|
2017-01-13 23:43:17 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-02-03 22:40:13 +01:00
|
|
|
android:paddingStart="10dp"
|
2017-01-13 23:43:17 +01:00
|
|
|
android:text="80"
|
2021-02-03 22:40:13 +01:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
tools:ignore="HardcodedText,RtlSymmetry" />
|
2017-01-13 23:43:17 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-02-03 22:40:13 +01:00
|
|
|
android:paddingStart="5dp"
|
2017-01-13 23:43:17 +01:00
|
|
|
android:text="-"
|
2021-02-03 22:40:13 +01:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
tools:ignore="HardcodedText,RtlSymmetry" />
|
2017-01-13 23:43:17 +01:00
|
|
|
|
|
|
|
<TextView
|
2021-02-03 22:40:13 +01:00
|
|
|
android:id="@+id/high"
|
2017-01-13 23:43:17 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-02-03 22:40:13 +01:00
|
|
|
android:paddingStart="5dp"
|
2017-01-13 23:43:17 +01:00
|
|
|
android:text="100"
|
2021-02-03 22:40:13 +01:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
tools:ignore="HardcodedText,RtlSymmetry" />
|
2017-01-13 23:43:17 +01:00
|
|
|
|
|
|
|
<TextView
|
2021-02-03 22:40:13 +01:00
|
|
|
android:id="@+id/duration"
|
2017-01-13 23:43:17 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-02-03 22:40:13 +01:00
|
|
|
android:paddingStart="10dp"
|
2017-01-13 23:43:17 +01:00
|
|
|
android:text="30 min"
|
2021-02-03 22:40:13 +01:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
tools:ignore="HardcodedText,RtlSymmetry" />
|
2017-01-13 23:43:17 +01:00
|
|
|
|
2017-06-08 18:15:17 +02:00
|
|
|
<TextView
|
2021-02-03 22:40:13 +01:00
|
|
|
android:layout_width="0dp"
|
2017-06-08 18:15:17 +02:00
|
|
|
android:layout_height="wrap_content"
|
2021-02-03 22:40:13 +01:00
|
|
|
android:layout_marginEnd="10dp"
|
2017-06-08 18:15:17 +02:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="" />
|
|
|
|
|
|
|
|
<TextView
|
2021-02-03 22:40:13 +01:00
|
|
|
android:id="@+id/ns"
|
2017-06-08 18:15:17 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-02-03 22:40:13 +01:00
|
|
|
android:layout_marginEnd="10dp"
|
2017-06-08 18:15:17 +02:00
|
|
|
android:text="NS"
|
2022-03-15 13:24:51 +01:00
|
|
|
android:textColor="?attr/setTempButton"
|
2021-02-03 22:40:13 +01:00
|
|
|
tools:ignore="HardcodedText" />
|
2017-06-08 18:15:17 +02:00
|
|
|
|
2017-01-13 23:43:17 +01:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<TextView
|
2021-02-03 22:40:13 +01:00
|
|
|
android:id="@+id/reason_label"
|
2017-01-13 23:43:17 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="top"
|
2021-02-03 22:40:13 +01:00
|
|
|
android:paddingStart="10dp"
|
2017-01-13 23:43:17 +01:00
|
|
|
android:text="@string/reason"
|
2021-02-03 22:40:13 +01:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
tools:ignore="RtlSymmetry" />
|
2017-01-13 23:43:17 +01:00
|
|
|
|
2017-01-16 23:23:20 +01:00
|
|
|
<TextView
|
2021-02-03 22:40:13 +01:00
|
|
|
android:id="@+id/reason_colon"
|
2017-01-16 23:23:20 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-02-03 22:40:13 +01:00
|
|
|
android:paddingEnd="5dp"
|
|
|
|
android:text=":"
|
|
|
|
tools:ignore="HardcodedText,RtlSymmetry" />
|
2017-01-16 23:23:20 +01:00
|
|
|
|
2017-01-13 23:43:17 +01:00
|
|
|
<TextView
|
2021-02-03 22:40:13 +01:00
|
|
|
android:id="@+id/reason"
|
|
|
|
android:layout_width="0dp"
|
2017-01-13 23:43:17 +01:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
2017-05-24 19:42:23 +02:00
|
|
|
android:layout_weight="1"
|
2021-02-03 22:40:13 +01:00
|
|
|
android:paddingEnd="10dp"
|
2017-01-13 23:43:17 +01:00
|
|
|
android:text="Activity"
|
2021-02-03 22:40:13 +01:00
|
|
|
android:textStyle="bold"
|
|
|
|
tools:ignore="HardcodedText,RtlSymmetry" />
|
2017-01-13 23:43:17 +01:00
|
|
|
|
2021-03-01 12:42:42 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/invalid"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingStart="10dp"
|
|
|
|
android:paddingEnd="10dp"
|
|
|
|
android:text="@string/invalid"
|
2022-03-15 13:24:51 +01:00
|
|
|
android:textColor="?attr/alarmColor" />
|
2021-03-01 12:42:42 +01:00
|
|
|
|
2022-02-22 21:11:15 +01:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/cb_remove"
|
2017-01-16 23:23:20 +01:00
|
|
|
android:layout_width="wrap_content"
|
2022-03-28 17:48:02 +02:00
|
|
|
android:layout_height="19dp"
|
2022-02-22 21:11:15 +01:00
|
|
|
android:contentDescription="@string/select_for_removal"
|
2022-03-28 17:48:02 +02:00
|
|
|
android:minWidth="0dp"
|
2022-02-22 21:11:15 +01:00
|
|
|
android:visibility="gone" />
|
2017-01-16 23:23:20 +01:00
|
|
|
|
2017-01-13 23:43:17 +01:00
|
|
|
</LinearLayout>
|
|
|
|
|
2017-05-24 19:42:23 +02:00
|
|
|
<View
|
2022-02-10 19:21:42 +01:00
|
|
|
android:id="@+id/delimiter"
|
2017-05-24 19:42:23 +02:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="2dip"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_marginTop="5dp"
|
2021-03-01 12:42:42 +01:00
|
|
|
android:layout_marginRight="5dp"
|
|
|
|
android:layout_marginBottom="5dp"
|
2022-03-11 12:59:00 +01:00
|
|
|
android:background="?android:attr/dividerHorizontal" />
|
2017-05-24 19:42:23 +02:00
|
|
|
|
2017-01-13 23:43:17 +01:00
|
|
|
</LinearLayout>
|
|
|
|
|
2019-05-16 13:57:37 +02:00
|
|
|
</androidx.cardview.widget.CardView>
|