2018-05-03 19:47:34 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-10-14 22:16:58 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-02-14 22:23:52 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-05-03 19:47:34 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-12-15 21:29:57 +01:00
|
|
|
android:background="?colorControlHighlight"
|
2018-05-03 19:47:34 +02:00
|
|
|
android:minHeight="40dp"
|
2018-10-14 22:16:58 +02:00
|
|
|
android:orientation="horizontal"
|
2018-05-03 19:47:34 +02:00
|
|
|
android:paddingLeft="20dp"
|
2018-10-14 22:16:58 +02:00
|
|
|
android:paddingTop="10dp"
|
2018-05-03 19:47:34 +02:00
|
|
|
android:paddingRight="20dp"
|
2019-02-14 22:23:52 +01:00
|
|
|
android:paddingBottom="10dp"
|
2020-05-01 17:38:19 +02:00
|
|
|
tools:context=".ui.modules.exam.ExamAdapter">
|
2018-05-03 19:47:34 +02:00
|
|
|
|
|
|
|
<TextView
|
2018-09-24 15:21:47 +02:00
|
|
|
android:id="@+id/examHeaderDay"
|
2018-10-14 22:16:58 +02:00
|
|
|
android:layout_width="0dp"
|
2018-05-03 19:47:34 +02:00
|
|
|
android:layout_height="wrap_content"
|
2018-10-14 22:16:58 +02:00
|
|
|
android:layout_weight="1"
|
2019-08-26 20:54:20 +02:00
|
|
|
android:textSize="18sp"
|
|
|
|
tools:text="Monday" />
|
2018-05-03 19:47:34 +02:00
|
|
|
|
|
|
|
<TextView
|
2018-09-24 15:21:47 +02:00
|
|
|
android:id="@+id/examHeaderDate"
|
2018-05-03 19:47:34 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="10dp"
|
|
|
|
android:gravity="end"
|
2019-08-26 20:54:20 +02:00
|
|
|
android:textSize="13sp"
|
|
|
|
tools:text="25.01.2020" />
|
2018-10-14 22:16:58 +02:00
|
|
|
</LinearLayout>
|