107 lines
No EOL
4 KiB
XML
107 lines
No EOL
4 KiB
XML
<?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:gravity="center_horizontal"
|
|
android:orientation="vertical"
|
|
android:paddingBottom="@dimen/activity_vertical_margin"
|
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
|
android:paddingTop="@dimen/activity_vertical_margin"
|
|
android:background="@drawable/background"
|
|
tools:context=".SignUp">
|
|
|
|
<TextView
|
|
android:id="@+id/Title"
|
|
android:layout_width="300dp"
|
|
android:layout_height="20dp"
|
|
android:layout_marginBottom="10dp"
|
|
android:gravity="center"
|
|
android:text="@string/signup"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Large"
|
|
android:textColor="@android:color/white"
|
|
android:textSize="15sp"
|
|
app:fontFamily="@font/julius_sans_one" />
|
|
|
|
<TextView
|
|
android:id="@+id/textView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="Role"
|
|
android:textColor="#6d81a5"
|
|
android:textSize="15sp" />
|
|
|
|
// component used from https://github.com/jaredrummler/MaterialSpinner
|
|
<com.jaredrummler.materialspinner.MaterialSpinner
|
|
android:id="@+id/RoleInput"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="45dp"
|
|
android:layout_marginBottom="10dp" />
|
|
|
|
//component used from https://github.com/rengwuxian/MaterialEditText
|
|
<com.rengwuxian.materialedittext.MaterialEditText
|
|
android:id="@+id/UsernameInput"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="80dp"
|
|
android:background="@color/colorWhite"
|
|
android:hint="Username"
|
|
android:textSize="15sp"
|
|
app:met_baseColor="@android:color/white"
|
|
app:met_floatingLabel="highlight"
|
|
app:met_primaryColor="?colorAccent"
|
|
app:met_singleLineEllipsis="true" />
|
|
|
|
//component used from https://github.com/rengwuxian/MaterialEditText
|
|
<com.rengwuxian.materialedittext.MaterialEditText
|
|
android:id="@+id/PasswordInput"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="80dp"
|
|
android:background="@drawable/customborder"
|
|
android:hint="Password"
|
|
android:textSize="15sp"
|
|
app:met_baseColor="@android:color/white"
|
|
app:met_floatingLabel="highlight"
|
|
app:met_primaryColor="?colorAccent"
|
|
app:met_singleLineEllipsis="true" />
|
|
|
|
//component used from https://github.com/rengwuxian/MaterialEditText
|
|
<com.rengwuxian.materialedittext.MaterialEditText
|
|
android:id="@+id/FirstNameInput"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="80dp"
|
|
android:background="@drawable/customborder"
|
|
android:hint="First Name"
|
|
android:textSize="15sp"
|
|
app:met_baseColor="@android:color/white"
|
|
app:met_floatingLabel="highlight"
|
|
app:met_primaryColor="?colorAccent"
|
|
app:met_singleLineEllipsis="true" />
|
|
|
|
//component used from https://github.com/rengwuxian/MaterialEditText
|
|
<com.rengwuxian.materialedittext.MaterialEditText
|
|
android:id="@+id/LastNameInput"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="80dp"
|
|
android:background="@drawable/customborder"
|
|
android:hint="Last Name"
|
|
android:textSize="15sp"
|
|
app:met_baseColor="@android:color/white"
|
|
app:met_floatingLabel="highlight"
|
|
app:met_primaryColor="?colorAccent"
|
|
app:met_singleLineEllipsis="true" />
|
|
|
|
<Button
|
|
android:theme="@style/AppTheme.Button"
|
|
android:id="@+id/SignUp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/signup"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout> |