2017-07-20 12:19:10 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
<View
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="1dp"
|
|
|
|
|
android:background="@color/black_20_alpha"
|
|
|
|
|
android:layout_marginTop="12dp"/>
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
2017-11-06 11:49:28 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:layout_marginTop="12dp"
|
|
|
|
|
android:layout_marginBottom="12dp">
|
2017-07-20 12:19:10 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/label"
|
2017-10-31 17:31:06 +00:00
|
|
|
android:layout_width="0dp"
|
2017-07-20 12:19:10 +00:00
|
|
|
android:layout_height="wrap_content"
|
2017-10-31 17:31:06 +00:00
|
|
|
android:layout_weight="1"
|
2020-07-28 10:31:36 +00:00
|
|
|
style="@style/Overline"
|
2017-07-20 12:19:10 +00:00
|
|
|
tools:text="Section Header"
|
2020-07-28 10:31:36 +00:00
|
|
|
android:layout_marginLeft="16dp"
|
|
|
|
|
android:layout_marginRight="16dp" />
|
2017-10-31 17:31:06 +00:00
|
|
|
<Spinner
|
|
|
|
|
android:id="@+id/classSelectionSpinner"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:visibility="gone"
|
|
|
|
|
android:layout_gravity="bottom"
|
2017-11-06 11:49:28 +00:00
|
|
|
tools:visibility="visible"
|
2017-10-31 17:31:06 +00:00
|
|
|
/>
|
2017-07-20 12:19:10 +00:00
|
|
|
</LinearLayout>
|
2017-11-07 16:40:11 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/headerNotesView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:layout_marginBottom="12dp"
|
|
|
|
|
android:textSize="12sp"
|
|
|
|
|
android:textColor="@color/gray_300"
|
|
|
|
|
android:visibility="gone"
|
|
|
|
|
tools:visibility="visible"
|
|
|
|
|
tools:text="@string/class_gear_disclaimer"/>
|
2017-07-20 12:19:10 +00:00
|
|
|
</LinearLayout>
|