Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:fillViewport="true"
- android:orientation="vertical"
- tools:context="com.example.SignUpController">
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <ImageView
- android:id="@+id/imageView"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:alpha=".6"
- android:visibility="gone" />
- <ProgressBar
- android:id="@+id/loadingView"
- style="@style/Widget.AppCompat.ProgressBar"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:indeterminate="true"
- android:visibility="gone" />
- <LinearLayout
- android:id="@+id/detailsView"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:visibility="visible">
- <android.support.design.widget.TextInputLayout
- android:id="@+id/first_name_txtinputlayout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:hint="First Name">
- <EditText
- android:id="@+id/first_name"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:inputType="textPassword" />
- </android.support.design.widget.TextInputLayout>
- <android.support.design.widget.TextInputLayout
- android:id="@+id/last_name_txtinputlayout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:hint="Last Name">
- <EditText
- android:id="@+id/last_name"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:inputType="textPassword" />
- </android.support.design.widget.TextInputLayout>
- <android.support.design.widget.TextInputLayout
- android:id="@+id/username_et"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:hint="Username">
- <EditText
- android:id="@+id/username"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:inputType="textEmailAddress" />
- </android.support.design.widget.TextInputLayout>
- <android.support.design.widget.TextInputLayout
- android:id="@+id/email_txtinputlayout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:hint="Email">
- <EditText
- android:id="@+id/email"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:inputType="textEmailAddress" />
- </android.support.design.widget.TextInputLayout>
- <android.support.design.widget.TextInputLayout
- android:id="@+id/password_txtinputlayout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:hint="Password">
- <EditText
- android:id="@+id/password"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:inputType="textPassword" />
- </android.support.design.widget.TextInputLayout>
- <android.support.design.widget.TextInputLayout
- android:id="@+id/password1_txtinputlayout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:hint="Repeat Password">
- <EditText
- android:id="@+id/password1"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:inputType="textPassword" />
- </android.support.design.widget.TextInputLayout>
- <Button
- android:id="@+id/login_button"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:text="Login" />
- </LinearLayout>
- </FrameLayout>
- </ScrollView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement