mirror of
https://github.com/wulkanowy/wulkanowy.git
synced 2025-03-15 00:43:59 +01:00
32 lines
1.1 KiB
XML
32 lines
1.1 KiB
XML
<?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.HomeworkAdapter">
|
|
|
|
<TextView
|
|
android:id="@+id/homeworkHeaderDay"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:textSize="18sp"
|
|
tools:text="Monday" />
|
|
|
|
<TextView
|
|
android:id="@+id/homeworkHeaderDate"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="10dp"
|
|
android:gravity="end"
|
|
android:textSize="13sp"
|
|
tools:text="22.02.2022" />
|
|
</LinearLayout>
|