Advertisement
Guest User

Untitled

a guest
Dec 7th, 2014
543
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.66 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    android:layout_width="match_parent"
  4.    android:layout_height="match_parent" >
  5.  
  6.     <Button
  7.        android:id="@+id/registerButton"
  8.        android:layout_width="match_parent"
  9.        android:layout_height="100dp"
  10.        android:layout_alignParentBottom="true"
  11.        android:text="Register" />
  12.  
  13.     <ImageView
  14.        android:id="@+id/logoImageView"
  15.        android:layout_width="match_parent"
  16.        android:layout_height="match_parent"
  17.        android:layout_above="@+id/registerButton"
  18.        android:src="@drawable/ic_confirmation" />
  19.  
  20.     <LinearLayout
  21.        android:id="@+id/loginLayout"
  22.        android:layout_width="220dp"
  23.        android:layout_height="wrap_content"
  24.        android:layout_above="@+id/registerButton"
  25.        android:layout_centerHorizontal="true"
  26.        android:layout_marginBottom="-20dp"
  27.        android:background="#F00"
  28.        android:orientation="vertical" >
  29.  
  30.         <EditText
  31.            android:id="@+id/editText1"
  32.            android:layout_width="match_parent"
  33.            android:layout_height="wrap_content"
  34.            android:text="Email" >
  35.         </EditText>
  36.  
  37.         <EditText
  38.            android:id="@+id/editText2"
  39.            android:layout_width="match_parent"
  40.            android:layout_height="wrap_content"
  41.            android:text="Password" />
  42.  
  43.         <Button
  44.            android:id="@+id/button2"
  45.            android:layout_width="match_parent"
  46.            android:layout_height="wrap_content"
  47.            android:text="Login" />
  48.     </LinearLayout>
  49.  
  50. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement