2018-04-24 21:27:45 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/timetable_widget_item_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:minHeight="45dp"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/timetable_widget_item_time"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:layout_marginStart="10dp"
|
|
|
|
android:layout_marginTop="5dp"
|
|
|
|
android:text="@string/app_name"
|
|
|
|
android:textColor="@color/second_text_color"
|
|
|
|
android:textSize="14sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/timetable_widget_item_subject"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="25dp"
|
|
|
|
android:layout_marginLeft="15dp"
|
|
|
|
android:layout_marginRight="25dp"
|
|
|
|
android:layout_marginStart="15dp"
|
|
|
|
android:layout_marginTop="5dp"
|
|
|
|
android:layout_toEndOf="@id/timetable_widget_item_time"
|
|
|
|
android:layout_toRightOf="@id/timetable_widget_item_time"
|
|
|
|
android:text="@string/app_name"
|
|
|
|
android:textColor="@color/second_text_color"
|
|
|
|
android:textSize="14sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/timetable_widget_item_description"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/timetable_widget_item_subject"
|
|
|
|
android:layout_marginBottom="5dp"
|
|
|
|
android:layout_marginEnd="25dp"
|
|
|
|
android:layout_marginLeft="15dp"
|
|
|
|
android:layout_marginRight="25dp"
|
|
|
|
android:layout_marginStart="15dp"
|
|
|
|
android:layout_marginTop="3dp"
|
|
|
|
android:layout_toEndOf="@id/timetable_widget_item_time"
|
|
|
|
android:layout_toRightOf="@id/timetable_widget_item_time"
|
|
|
|
android:text="@string/app_name"
|
|
|
|
android:textColor="@color/colorPrimaryDark"
|
|
|
|
android:textSize="12sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/timetable_widget_item_room"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/timetable_widget_item_time"
|
|
|
|
android:layout_marginBottom="5dp"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:layout_marginStart="10dp"
|
|
|
|
android:layout_marginTop="3dp"
|
|
|
|
android:text="@string/app_name"
|
|
|
|
android:textColor="@color/second_text_color"
|
|
|
|
android:textSize="12sp" />
|
|
|
|
|
|
|
|
|
2018-08-26 00:18:31 +02:00
|
|
|
</RelativeLayout>
|