2015-08-21 12:13:36 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-08-21 12:13:51 +02:00
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
2015-08-25 14:21:53 +02:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/clockIconImageView"
|
2015-08-21 12:13:51 +02:00
|
|
|
style="@style/Widget.AppCompat.Button.Borderless"
|
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:layout_gravity="bottom"
|
|
|
|
android:src="@drawable/ic_action_time"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="24dp"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_weight="1">
|
|
|
|
|
|
|
|
<TextView
|
2015-08-25 14:21:53 +02:00
|
|
|
android:id="@+id/daysTextView"
|
2015-08-21 12:13:51 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
tools:text="Mo-We"/>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="@color/divider_color"/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="16dp"
|
|
|
|
android:layout_marginRight="16dp"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
2015-08-25 14:21:53 +02:00
|
|
|
android:id="@+id/openingTextView"
|
2015-08-21 12:13:51 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
tools:text="08:00"/>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="@color/divider_color"/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="16dp"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="@color/divider_color"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="16dp"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
2015-08-25 14:21:53 +02:00
|
|
|
android:id="@+id/closingTextView"
|
2015-08-21 12:13:51 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
tools:text="20:00"/>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="@color/divider_color"/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/deleteItemImageButton"
|
|
|
|
style="@style/Widget.AppCompat.Button.Borderless"
|
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:layout_gravity="bottom"
|
2015-08-25 14:21:53 +02:00
|
|
|
android:src="@drawable/ic_action_remove_dark"/>
|
2015-08-21 12:13:36 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|