mirror of
https://github.com/wulkanowy/wulkanowy.git
synced 2025-03-17 10:24:00 +01:00
67 lines
2.6 KiB
XML
67 lines
2.6 KiB
XML
![]() |
<?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" />
|
||
|
|
||
|
|
||
|
</RelativeLayout>
|