Skip to content
Snippets Groups Projects
Select Git revision
  • 9aac2574be8d6304d0852cd9fdccf16e93e44768
  • master default
2 results

activity_sign_up.xml

Blame
  • activity_sign_up.xml 7.34 KiB
    <?xml version="1.0" encoding="utf-8"?>
    <ScrollView 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="wrap_content"
        tools:context="com.example.taskboxx.SignUpActivity">
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    
        <TextView
            android:id="@+id/Explanation"
            android:textColor="#AA000000"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true"
            android:layout_alignParentTop="true"
            android:layout_marginLeft="25dp"
            android:layout_marginRight="25dp"
            android:layout_marginTop="25dp"
            android:text="Enter the following details to Sign up for TaskBoxx, your personal project and task manager!" />
    
        <android.support.design.widget.TextInputLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/SignUpName_textLayout"
            android:layout_below="@+id/Explanation"
            android:layout_marginTop="20dp"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true">
            <EditText android:id="@+id/input_Name_SignUp"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginRight="30dp"
                android:layout_marginLeft="30dp"
                android:inputType="text"
                android:hint="Name" />
        </android.support.design.widget.TextInputLayout>
        <android.support.design.widget.TextInputLayout
            android:layout_width="250dp"
            android:layout_height="wrap_content"
            android:id="@+id/SignUpRollNo_textLayout"
            android:layout_below="@+id/SignUpName_textLayout"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true">
            <EditText android:id="@+id/input_RollNo_SignUp"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginRight="10dp"
                android:layout_marginLeft="30dp"
                android:inputType="text"
                android:hint="Roll No." />
        </android.support.design.widget.TextInputLayout>
        <android.support.design.widget.TextInputLayout
            android:layout_width="200dp"
            android:layout_height="wrap_content"
            android:id="@+id/SignUpDept_textLayout"
            android:layout_below="@+id/SignUpRollNo_textLayout"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true">
            <EditText android:id="@+id/input_Dept_SignUp"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginRight="10dp"
                android:layout_marginLeft="30dp"
                android:inputType="text"
                android:hint="Department" />
        </android.support.design.widget.TextInputLayout>