2023-04-08 11:41:02 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2023-05-14 23:09:06 +02:00
|
|
|
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
|
2023-04-08 13:43:26 +02:00
|
|
|
android:layout_width="match_parent"
|
2023-04-08 11:41:02 +02:00
|
|
|
android:layout_height="wrap_content"
|
2023-05-14 23:09:06 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2023-04-08 15:13:11 +02:00
|
|
|
android:paddingHorizontal="8dp"
|
|
|
|
|
android:paddingVertical="4dp"
|
2023-04-08 11:41:02 +02:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
2023-04-08 15:13:11 +02:00
|
|
|
<com.google.android.material.card.MaterialCardView
|
2023-04-12 10:49:30 +02:00
|
|
|
android:id="@+id/card_background"
|
2023-04-08 15:13:11 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2023-04-23 17:13:48 +02:00
|
|
|
style="@style/Widget.Material3.CardView.Outlined">
|
2023-04-08 11:41:02 +02:00
|
|
|
|
2023-04-08 15:13:11 +02:00
|
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
2023-05-01 22:19:44 +02:00
|
|
|
android:id="@+id/linear_layout"
|
2023-04-08 15:13:11 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
2023-05-01 22:19:44 +02:00
|
|
|
android:clickable="true"
|
|
|
|
|
android:focusable="true"
|
2023-04-08 15:13:11 +02:00
|
|
|
android:padding="16dp">
|
2023-04-08 11:41:02 +02:00
|
|
|
|
2023-04-08 15:13:11 +02:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/text_title"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:textSize="24sp"
|
|
|
|
|
android:fontFamily="@font/lato_bolditalic"/>
|
2023-04-08 11:41:02 +02:00
|
|
|
|
2023-04-08 15:13:11 +02:00
|
|
|
<com.google.android.material.divider.MaterialDivider
|
2023-04-26 10:21:16 +02:00
|
|
|
android:id="@+id/divider"
|
2023-04-14 13:09:40 +02:00
|
|
|
style="@style/DividerTheme"
|
2023-04-08 15:13:11 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginVertical="4dp"/>
|
2023-04-08 11:41:02 +02:00
|
|
|
|
2023-04-08 15:13:11 +02:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/text_lecturers"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/text_timeslot"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/text_room"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
|
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
|
|
|
|
|
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|
2023-04-30 22:47:59 +02:00
|
|
|
|
2023-05-14 23:09:06 +02:00
|
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
|
|
|
android:id="@+id/no_events_container"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
|
android:layout_marginTop="4dp">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="20dp"
|
|
|
|
|
android:layout_height="20dp"
|
|
|
|
|
android:layout_marginHorizontal="4dp"
|
|
|
|
|
android:scaleType="centerInside"
|
|
|
|
|
app:tint="?attr/colorText"
|
|
|
|
|
android:src="@drawable/edit_off"/>
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/text_no_events"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
|
android:text="@string/schedule_no_events"/>
|
|
|
|
|
|
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
|
|
|
|
|
2023-04-08 11:41:02 +02:00
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|