2018-09-19 22:29:35 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-07-11 19:18:05 +02:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-09-19 22:29:35 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2019-03-21 23:38:56 +01:00
|
|
|
android:id="@+id/rootLayout"
|
2018-09-19 22:29:35 +02:00
|
|
|
android:layout_width="match_parent"
|
2018-09-25 00:00:09 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="8dp"
|
2019-03-21 23:38:56 +01:00
|
|
|
android:layout_marginTop="8dp"
|
2019-07-11 19:18:05 +02:00
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
android:layout_marginBottom="8dp"
|
2019-12-03 21:07:31 +01:00
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
2019-07-11 19:18:05 +02:00
|
|
|
android:background="@color/ribbonDefault"
|
|
|
|
android:padding="8dp">
|
2019-03-21 23:38:56 +01:00
|
|
|
|
2019-08-23 21:48:00 +02:00
|
|
|
<CheckBox
|
2020-12-14 12:46:38 +01:00
|
|
|
android:id="@+id/enabled"
|
2019-08-23 21:48:00 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:layout_alignParentTop="true" />
|
|
|
|
|
|
|
|
<TextView
|
2020-12-14 12:46:38 +01:00
|
|
|
android:id="@+id/eventTitle"
|
2019-08-23 21:48:00 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-12-14 12:46:38 +01:00
|
|
|
android:layout_alignTop="@+id/enabled"
|
|
|
|
android:layout_alignBottom="@+id/enabled"
|
2019-08-23 21:48:00 +02:00
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_marginTop="6dp"
|
2020-11-29 17:39:08 +01:00
|
|
|
android:layout_toStartOf="@+id/iconTrash"
|
2020-12-14 12:46:38 +01:00
|
|
|
android:layout_toEndOf="@id/enabled"
|
2019-08-23 21:48:00 +02:00
|
|
|
android:text="Title"
|
|
|
|
android:textAlignment="viewStart"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
2020-11-29 17:39:08 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/iconTrash"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_marginEnd="20dp"
|
|
|
|
android:layout_toStartOf="@+id/iconSort"
|
|
|
|
android:contentDescription="@string/remove_label"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:src="@drawable/ic_trash_outline" />
|
|
|
|
|
2019-03-26 00:05:20 +01:00
|
|
|
<ImageView
|
2019-12-03 21:07:31 +01:00
|
|
|
android:id="@+id/iconSort"
|
2019-03-21 23:38:56 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
2019-07-11 19:18:05 +02:00
|
|
|
android:layout_alignParentEnd="true"
|
2019-12-03 21:07:31 +01:00
|
|
|
android:contentDescription="@string/reorder_label"
|
2019-07-11 19:18:05 +02:00
|
|
|
android:orientation="horizontal"
|
2020-10-19 19:24:33 +02:00
|
|
|
app:srcCompat="@drawable/ic_reorder_gray_24dp" />
|
2018-09-19 22:29:35 +02:00
|
|
|
|
2019-03-26 00:05:20 +01:00
|
|
|
<LinearLayout
|
2019-08-23 21:48:00 +02:00
|
|
|
android:id="@+id/iconLayout"
|
|
|
|
android:layout_width="match_parent"
|
2018-09-19 22:29:35 +02:00
|
|
|
android:layout_height="wrap_content"
|
2020-12-14 12:46:38 +01:00
|
|
|
android:layout_below="@id/enabled"
|
2019-08-23 21:48:00 +02:00
|
|
|
android:orientation="horizontal" />
|
2019-03-26 00:05:20 +01:00
|
|
|
|
2018-09-25 00:00:09 +02:00
|
|
|
|
2019-03-21 23:38:56 +01:00
|
|
|
</RelativeLayout>
|