res/layout/create_account.xml
changeset 212 bbc0b169cdf0
child 230 21d91ef67e97
equal deleted inserted replaced
211:d75cbb5937c3 212:bbc0b169cdf0
       
     1 <?xml version="1.0" encoding="utf-8"?>
       
     2 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
       
     3 	android:orientation="vertical"
       
     4    	android:layout_width="fill_parent"
       
     5     android:layout_height="fill_parent">
       
     6 	<LinearLayout
       
     7 		android:layout_width="fill_parent"
       
     8 		android:layout_height="fill_parent"
       
     9 		android:orientation="vertical"
       
    10 		android:padding="10dip">
       
    11     	<TextView android:id="@+id/create_account_label_username"
       
    12     		android:layout_width="fill_parent"
       
    13     		android:layout_height="wrap_content"
       
    14   			android:text="@string/create_account_username"
       
    15     		style="@style/Label" />
       
    16 		<EditText android:id="@+id/create_account_username"
       
    17 			android:layout_width="fill_parent"
       
    18 			android:layout_height="wrap_content" />
       
    19     	<TextView android:id="@+id/create_account_label_password"
       
    20     		android:layout_width="fill_parent"
       
    21     		android:layout_height="wrap_content"
       
    22     		android:text="@string/create_account_password"
       
    23     		style="@style/Label" />
       
    24 		<EditText android:id="@+id/create_account_password"
       
    25 			android:layout_width="fill_parent"
       
    26 			android:layout_height="wrap_content"
       
    27 			android:password="true" />
       
    28     	<TextView android:id="@+id/create_account_label_confirm_password"
       
    29     		android:layout_width="fill_parent"
       
    30     		android:layout_height="wrap_content"
       
    31     		android:text="@string/create_account_confirm_password"
       
    32     		style="@style/Label" />
       
    33 		<EditText android:id="@+id/create_account_confirm_password"
       
    34 			android:layout_width="fill_parent"
       
    35 			android:layout_height="wrap_content"
       
    36 			android:password="true" />
       
    37     	<View
       
    38     		android:layout_height="21dp"
       
    39     		android:layout_width="fill_parent" />
       
    40 		<Button android:id="@+id/create_account_button"
       
    41 			android:layout_width="fill_parent"
       
    42 			android:layout_height="fill_parent"
       
    43 			android:text="@string/button_create_account" />
       
    44 	</LinearLayout>
       
    45 </ScrollView>