wulkanowy-mod/app/src/main/res/layout/header_exam.xml

32 lines
1.0 KiB
XML
Raw Normal View History

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