You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.6 KiB

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:orientation="horizontal"
android:gravity="center_vertical"
android:background="#B0E0E6">
<TextView
android:layout_width="150dp"
android:layout_height="wrap_content"
android:paddingLeft="5dp"
android:textColor="@color/black"
android:textSize="30dp"
android:textStyle="italic"
android:layout_weight="1"
android:text="DPDB"/>
<Spinner
android:id="@+id/school"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:entries="@array/school"
android:fadeScrollbars="true"
android:prompt="@string/school_prompt"
android:scrollIndicators="right"
android:spinnerMode="dialog">
</Spinner>
</LinearLayout>
<FrameLayout
android:id="@+id/frag_layout"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
tools:ignore="MissingConstraints">
</FrameLayout>
<include layout="@layout/bottom"/>
</LinearLayout>