Skip to content

Instantly share code, notes, and snippets.

@scottferg
Forked from wmbest2/layout.xml
Created May 26, 2010 02:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scottferg/413960 to your computer and use it in GitHub Desktop.
Save scottferg/413960 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:id="@+id/widget51"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android"
>
<TextView
android:id="@+id/widget40"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="5px"
android:layout_alignParentTop="true"
android:text="Domain Name"
>
</TextView>
<EditText
android:id="@+id/widget41"
android:layout_width="fill_parent"
android:layout_height="39px"
android:text="EditText"
android:textSize="18sp"
android:layout_below="@id/widget40"
>
</EditText>
<TextView
android:id="@+id/widget42"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Username"
android:layout_below="@id/widget41"
>
</TextView>
<EditText
android:id="@+id/widget43"
android:layout_width="fill_parent"
android:layout_height="36px"
android:text="EditText"
android:textSize="18sp"
android:layout_below="@id/widget42"
>
</EditText>
<TextView
android:id="@+id/widget44"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Password"
android:layout_below="@id/widget43"
>
</TextView>
<EditText
android:id="@+id/widget45"
android:layout_width="fill_parent"
android:layout_height="36px"
android:text="EditText"
android:textSize="18sp"
android:layout_below="@id/widget44"
>
</EditText>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:text="LoL"
/>
</RelativeLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment