Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
- <Button
- android:id="@+id/registerButton"
- android:layout_width="match_parent"
- android:layout_height="100dp"
- android:layout_alignParentBottom="true"
- android:text="Register" />
- <ImageView
- android:id="@+id/logoImageView"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_above="@+id/registerButton"
- android:src="@drawable/ic_confirmation" />
- <LinearLayout
- android:id="@+id/loginLayout"
- android:layout_width="220dp"
- android:layout_height="wrap_content"
- android:layout_above="@+id/registerButton"
- android:layout_centerHorizontal="true"
- android:layout_marginBottom="-20dp"
- android:background="#F00"
- android:orientation="vertical" >
- <EditText
- android:id="@+id/editText1"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="Email" >
- </EditText>
- <EditText
- android:id="@+id/editText2"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="Password" />
- <Button
- android:id="@+id/button2"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="Login" />
- </LinearLayout>
- </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement