res/layout/create_account.xml
changeset 995 6318bee856fd
parent 986 2c85a0f62ab0
child 996 476e8690b0ea
equal deleted inserted replaced
994:87c97dcb7136 995:6318bee856fd
    10 	    <ImageView android:id="@+id/logo"
    10 	    <ImageView android:id="@+id/logo"
    11 		android:layout_width="fill_parent" android:layout_height="wrap_content"
    11 		android:layout_width="fill_parent" android:layout_height="wrap_content"
    12 		android:layout_marginTop="15dp"
    12 		android:layout_marginTop="15dp"
    13 		android:layout_marginBottom="30dp"
    13 		android:layout_marginBottom="30dp"
    14 		android:src="@drawable/logo"/>
    14 		android:src="@drawable/logo"/>
    15 	    
    15 	   
       
    16 	    <TextView
       
    17 		android:layout_width="fill_parent" android:layout_height="wrap_content"
       
    18 		android:text="@string/create_account_text"
       
    19 		android:textSize="18sp"
       
    20 		android:paddingBottom="10dip"
       
    21 		android:focusable="true" />
    16 		<TextView
    22 		<TextView
    17 			android:layout_width="fill_parent" android:layout_height="wrap_content"
    23 			android:layout_width="fill_parent" android:layout_height="wrap_content"
    18 			android:text="@string/create_account_username" style="@style/Label" />
    24 			android:text="@string/create_account_username" style="@style/Label" />
    19 		<EditText android:id="@+id/create_account_username"
    25 		<LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" 
    20 			android:inputType="textEmailAddress" android:imeOptions="actionNext"
    26 		    android:orientation="horizontal">
    21 			android:layout_width="fill_parent" android:layout_height="wrap_content"
    27 			<EditText android:id="@+id/create_account_username"
    22 			android:singleLine="true"
    28 				android:inputType="textEmailAddress" android:imeOptions="actionNext"
    23 			android:hint="beem@beem-project.com "
    29 				android:layout_width="wrap_content" android:layout_height="wrap_content"
    24 			android:contentDescription="@string/create_account_username"/>
    30 				android:singleLine="true"
       
    31 				android:minWidth="120dp"
       
    32 				android:hint="beem"
       
    33 				android:contentDescription="@string/create_account_username"/>
       
    34 			<TextView
       
    35 				android:layout_width="wrap_content" android:layout_height="wrap_content"
       
    36 				android:text=" @ " style="@style/Label" />
       
    37 		<AutoCompleteTextView android:id="@+id/xmpp_server"
       
    38 		    android:layout_width="wrap_content" android:layout_height="wrap_content"
       
    39 			android:minWidth="160dp"
       
    40 		    android:gravity="left"
       
    41 		    android:hint="beem-project.com"
       
    42 		    android:inputType="textNoSuggestions"
       
    43 		    style="?android:attr/dropDownSpinnerStyle"/>
       
    44 		</LinearLayout>
    25 		<TextView
    45 		<TextView
    26 			android:layout_width="fill_parent" android:layout_height="wrap_content"
    46 			android:layout_width="fill_parent" android:layout_height="wrap_content"
    27 			android:text="@string/create_account_password" style="@style/Label" />
    47 			android:text="@string/create_account_password" style="@style/Label" />
    28 		<EditText android:id="@+id/create_account_password"
    48 		<EditText android:id="@+id/create_account_password"
    29 			android:layout_width="fill_parent" android:layout_height="wrap_content"
    49 			android:layout_width="fill_parent" android:layout_height="wrap_content"
    36 		<EditText android:id="@+id/create_account_confirm_password"
    56 		<EditText android:id="@+id/create_account_confirm_password"
    37 			android:layout_width="fill_parent" android:layout_height="wrap_content"
    57 			android:layout_width="fill_parent" android:layout_height="wrap_content"
    38 			android:inputType="textPassword" android:imeOptions="actionNext"
    58 			android:inputType="textPassword" android:imeOptions="actionNext"
    39 			android:singleLine="true"
    59 			android:singleLine="true"
    40 			android:contentDescription="@string/create_account_confirm_password"/>
    60 			android:contentDescription="@string/create_account_confirm_password"/>
    41 
    61 		<TextView android:id="@+id/error_label"
       
    62 				android:layout_width="fill_parent" android:layout_height="wrap_content"
       
    63 				android:textColor="@color/red" android:textStyle="bold"
       
    64 				style="@style/Label"/>
    42 	</LinearLayout>
    65 	</LinearLayout>
    43 	</ScrollView>
    66 	</ScrollView>
    44 	
    67 	
    45 	<RelativeLayout
    68 	<RelativeLayout
    46 	android:gravity="right|center_vertical"
    69 	android:gravity="right|center_vertical"