2018-05-03 12:47:34 -05:00
|
|
|
<?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"
|
2019-02-14 15:23:52 -06:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-05-03 12:47:34 -05:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-12-15 14:29:57 -06:00
|
|
|
android:background="?colorControlHighlight"
|
2018-05-03 12:47:34 -05:00
|
|
|
android:minHeight="40dp"
|
2018-10-14 15:16:58 -05:00
|
|
|
android:orientation="horizontal"
|
2018-05-03 12:47:34 -05:00
|
|
|
android:paddingLeft="20dp"
|
2018-10-14 15:16:58 -05:00
|
|
|
android:paddingTop="10dp"
|
2018-05-03 12:47:34 -05:00
|
|
|
android:paddingRight="20dp"
|
2019-02-14 15:23:52 -06:00
|
|
|
android:paddingBottom="10dp"
|
|
|
|
tools:context=".ui.modules.exam.ExamHeader">
|
2018-05-03 12:47:34 -05:00
|
|
|
|
|
|
|
<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"
|
2018-05-03 12:47:34 -05:00
|
|
|
android:layout_height="wrap_content"
|
2018-10-14 15:16:58 -05:00
|
|
|
android:layout_weight="1"
|
2018-05-03 12:47:34 -05:00
|
|
|
android:text="@string/app_name"
|
|
|
|
android:textSize="18sp" />
|
|
|
|
|
|
|
|
<TextView
|
2018-09-24 08:21:47 -05:00
|
|
|
android:id="@+id/examHeaderDate"
|
2018-05-03 12:47:34 -05:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="10dp"
|
2018-10-14 15:16:58 -05:00
|
|
|
android:layout_marginLeft="10dp"
|
2018-05-03 12:47:34 -05:00
|
|
|
android:gravity="end"
|
|
|
|
android:text="@string/app_name"
|
|
|
|
android:textSize="13sp" />
|
|
|
|
|
2018-10-14 15:16:58 -05:00
|
|
|
</LinearLayout>
|