Advertisement
Guest User

Untitled

a guest
Oct 11th, 2018
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 5.03 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:tools="http://schemas.android.com/tools"
  4.    android:layout_width="match_parent"
  5.    android:layout_height="match_parent"
  6.    android:fillViewport="true"
  7.    android:orientation="vertical"
  8.    tools:context="com.example.SignUpController">
  9.  
  10.     <FrameLayout
  11.        android:layout_width="match_parent"
  12.        android:layout_height="wrap_content">
  13.  
  14.         <ImageView
  15.            android:id="@+id/imageView"
  16.            android:layout_width="match_parent"
  17.            android:layout_height="match_parent"
  18.            android:alpha=".6"
  19.            android:visibility="gone" />
  20.  
  21.         <ProgressBar
  22.            android:id="@+id/loadingView"
  23.            style="@style/Widget.AppCompat.ProgressBar"
  24.            android:layout_width="wrap_content"
  25.            android:layout_height="wrap_content"
  26.            android:layout_gravity="center"
  27.            android:indeterminate="true"
  28.            android:visibility="gone" />
  29.  
  30.         <LinearLayout
  31.            android:id="@+id/detailsView"
  32.            android:layout_width="match_parent"
  33.            android:layout_height="wrap_content"
  34.            android:orientation="vertical"
  35.            android:visibility="visible">
  36.  
  37.             <android.support.design.widget.TextInputLayout
  38.                android:id="@+id/first_name_txtinputlayout"
  39.                android:layout_width="match_parent"
  40.                android:layout_height="wrap_content"
  41.                android:hint="First Name">
  42.  
  43.                 <EditText
  44.                    android:id="@+id/first_name"
  45.                    android:layout_width="match_parent"
  46.                    android:layout_height="match_parent"
  47.                    android:inputType="textPassword" />
  48.             </android.support.design.widget.TextInputLayout>
  49.  
  50.             <android.support.design.widget.TextInputLayout
  51.                android:id="@+id/last_name_txtinputlayout"
  52.                android:layout_width="match_parent"
  53.                android:layout_height="wrap_content"
  54.                android:hint="Last Name">
  55.  
  56.                 <EditText
  57.                    android:id="@+id/last_name"
  58.                    android:layout_width="match_parent"
  59.                    android:layout_height="match_parent"
  60.                    android:inputType="textPassword" />
  61.             </android.support.design.widget.TextInputLayout>
  62.  
  63.  
  64.             <android.support.design.widget.TextInputLayout
  65.                android:id="@+id/username_et"
  66.                android:layout_width="match_parent"
  67.                android:layout_height="wrap_content"
  68.                android:hint="Username">
  69.  
  70.                 <EditText
  71.                    android:id="@+id/username"
  72.                    android:layout_width="match_parent"
  73.                    android:layout_height="match_parent"
  74.                    android:inputType="textEmailAddress" />
  75.             </android.support.design.widget.TextInputLayout>
  76.  
  77.  
  78.             <android.support.design.widget.TextInputLayout
  79.                android:id="@+id/email_txtinputlayout"
  80.                android:layout_width="match_parent"
  81.                android:layout_height="wrap_content"
  82.                android:hint="Email">
  83.  
  84.                 <EditText
  85.                    android:id="@+id/email"
  86.                    android:layout_width="match_parent"
  87.                    android:layout_height="match_parent"
  88.                    android:inputType="textEmailAddress" />
  89.             </android.support.design.widget.TextInputLayout>
  90.  
  91.             <android.support.design.widget.TextInputLayout
  92.                android:id="@+id/password_txtinputlayout"
  93.                android:layout_width="match_parent"
  94.                android:layout_height="wrap_content"
  95.                android:hint="Password">
  96.  
  97.                 <EditText
  98.                    android:id="@+id/password"
  99.                    android:layout_width="match_parent"
  100.                    android:layout_height="match_parent"
  101.                    android:inputType="textPassword" />
  102.             </android.support.design.widget.TextInputLayout>
  103.  
  104.             <android.support.design.widget.TextInputLayout
  105.                android:id="@+id/password1_txtinputlayout"
  106.                android:layout_width="match_parent"
  107.                android:layout_height="wrap_content"
  108.                android:hint="Repeat Password">
  109.  
  110.                 <EditText
  111.                    android:id="@+id/password1"
  112.                    android:layout_width="match_parent"
  113.                    android:layout_height="match_parent"
  114.                    android:inputType="textPassword" />
  115.             </android.support.design.widget.TextInputLayout>
  116.  
  117.             <Button
  118.                android:id="@+id/login_button"
  119.                android:layout_width="wrap_content"
  120.                android:layout_height="wrap_content"
  121.                android:layout_gravity="center"
  122.                android:text="Login" />
  123.  
  124.         </LinearLayout>
  125.  
  126.     </FrameLayout>
  127.  
  128. </ScrollView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement