2023-04-08 11:41:02 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<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-04-12 22:07:18 +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-13 21:05:52 +02:00
|
|
|
style="@style/Widget.Material3.CardView.Outlined"
|
|
|
|
|
android:backgroundTint="?attr/colorCardBackground">
|
2023-04-08 11:41:02 +02:00
|
|
|
|
2023-04-08 15:13:11 +02:00
|
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
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-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-08 11:41:02 +02:00
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|