2019-03-17 00:17:16 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?colorControlHighlight"
|
|
|
|
android:minHeight="40dp"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingLeft="20dp"
|
|
|
|
android:paddingTop="10dp"
|
|
|
|
android:paddingRight="20dp"
|
|
|
|
android:paddingBottom="10dp"
|
|
|
|
tools:context=".ui.modules.homework.HomeworkHeader">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/homeworkHeaderDay"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:textSize="18sp"
|
2019-08-26 20:54:20 +02:00
|
|
|
tools:text="Monday" />
|
2019-03-17 00:17:16 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/homeworkHeaderDate"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="10dp"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:gravity="end"
|
|
|
|
android:textSize="13sp"
|
2019-08-26 20:54:20 +02:00
|
|
|
tools:text="22.02.2022" />
|
2019-03-17 00:17:16 +01:00
|
|
|
</LinearLayout>
|