1 <?xml version="1.0" encoding="utf-8"?>  | 
     1 <?xml version="1.0" encoding="utf-8"?>  | 
     2 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"  | 
     2 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"  | 
     3 	android:layout_width="fill_parent" android:layout_height="fill_parent"  | 
     3 	android:layout_width="fill_parent" android:layout_height="fill_parent"  | 
     4 	android:orientation="vertical">  | 
     4 	android:orientation="vertical">  | 
     5 	<LinearLayout android:orientation="vertical"  | 
     5 	<LinearLayout android:orientation="vertical"  | 
     6 		android:layout_width="fill_parent" android:layout_height="fill_parent"  | 
     6 		android:layout_width="fill_parent" android:layout_height="wrap_content"  | 
     7 		android:padding="10dip">  | 
     7 		android:padding="10dip">  | 
     8 		<TextView android:id="@+id/create_account_label_username"  | 
     8 		<TextView android:id="@+id/create_account_label_username"  | 
     9 			android:layout_width="fill_parent" android:layout_height="wrap_content"  | 
     9 			android:layout_width="fill_parent" android:layout_height="wrap_content"  | 
    10 			android:text="@string/create_account_username" style="@style/Label" />  | 
    10 			android:text="@string/create_account_username" style="@style/Label" />  | 
    11 		<EditText android:id="@+id/create_account_username"  | 
    11 		<EditText android:id="@+id/create_account_username"  | 
    17 			android:layout_width="fill_parent" android:layout_height="wrap_content"  | 
    17 			android:layout_width="fill_parent" android:layout_height="wrap_content"  | 
    18 			android:text="@string/create_account_password" style="@style/Label" />  | 
    18 			android:text="@string/create_account_password" style="@style/Label" />  | 
    19 		<EditText android:id="@+id/create_account_password"  | 
    19 		<EditText android:id="@+id/create_account_password"  | 
    20 			android:layout_width="fill_parent" android:layout_height="wrap_content"  | 
    20 			android:layout_width="fill_parent" android:layout_height="wrap_content"  | 
    21 			android:inputType="textPassword" android:imeOptions="actionNext"  | 
    21 			android:inputType="textPassword" android:imeOptions="actionNext"  | 
    22 			android:password="true" android:singleLine="true"  | 
    22 			android:singleLine="true"  | 
    23 			android:contentDescription="@string/create_account_password"/>  | 
    23 			android:contentDescription="@string/create_account_password"/>  | 
    24 		<TextView android:id="@+id/create_account_label_confirm_password"  | 
    24 		<TextView android:id="@+id/create_account_label_confirm_password"  | 
    25 			android:layout_width="fill_parent" android:layout_height="wrap_content"  | 
    25 			android:layout_width="fill_parent" android:layout_height="wrap_content"  | 
    26 			android:text="@string/create_account_confirm_password" style="@style/Label" />  | 
    26 			android:text="@string/create_account_confirm_password" style="@style/Label" />  | 
    27 		<EditText android:id="@+id/create_account_confirm_password"  | 
    27 		<EditText android:id="@+id/create_account_confirm_password"  | 
    28 			android:layout_width="fill_parent" android:layout_height="wrap_content"  | 
    28 			android:layout_width="fill_parent" android:layout_height="wrap_content"  | 
    29 			android:inputType="textPassword" android:imeOptions="actionNext"  | 
    29 			android:inputType="textPassword" android:imeOptions="actionNext"  | 
    30 			android:password="true" android:singleLine="true"  | 
    30 			android:singleLine="true"  | 
    31 			android:contentDescription="@string/create_account_confirm_password"/>  | 
    31 			android:contentDescription="@string/create_account_confirm_password"/>  | 
    32 		<View android:layout_width="fill_parent" android:layout_height="wrap_content"  | 
    32 		<View android:layout_width="fill_parent" android:layout_height="0dip"  | 
    33 			android:layout_weight="1" android:layout_marginBottom="18dp" />  | 
    33 			android:layout_weight="1" android:layout_marginBottom="18dp" />  | 
    34 		<Button android:id="@+id/create_account_button"  | 
    34 		<Button android:id="@+id/create_account_button"  | 
    35 			android:layout_width="fill_parent" android:layout_height="wrap_content"  | 
    35 			android:layout_width="fill_parent" android:layout_height="wrap_content"  | 
    36 			android:text="@string/button_create_account" android:textStyle="bold"  | 
    36 			android:text="@string/button_create_account" android:textStyle="bold"  | 
    37 			android:textColor="#333333" android:textSize="18sp"  | 
    37 			android:textColor="#333333" android:textSize="18sp"  |