res/layout/accountcreation.xml
changeset 190 079488da1bfc
parent 122 619465682697
equal deleted inserted replaced
189:dae38cc05ddf 190:079488da1bfc
     1 <?xml version="1.0" encoding="utf-8"?>
     1 <?xml version="1.0" encoding="utf-8"?>
     2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     3               android:orientation="vertical"
     3 	android:orientation="vertical" android:layout_width="fill_parent"
     4               android:layout_width="fill_parent"
     4 	android:layout_height="fill_parent">
     5               android:layout_height="fill_parent"
     5 	<LinearLayout android:orientation="horizontal"
     6         >
     6 		android:layout_width="fill_parent" android:layout_height="wrap_content">
     7     <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     7 		<TextView android:layout_width="wrap_content"
     8                   android:orientation="horizontal"
     8 			android:layout_height="wrap_content" android:text="@string/ACLogin"
     9                   android:layout_width="fill_parent"
     9 			android:minWidth="70dp" />
    10                   android:layout_height="wrap_content"
       
    11             >
       
    12         <TextView
       
    13                 android:layout_width="wrap_content"
       
    14                 android:layout_height="wrap_content"
       
    15                 android:text="Login:"
       
    16                 android:minWidth="70dp"
       
    17                 />
       
    18                 
       
    19         <EditText android:id="@+id/login"
       
    20                   android:layout_width="wrap_content"
       
    21                   android:layout_height="wrap_content"
       
    22                   android:singleLine="true"
       
    23                   android:textSize="16sp"
       
    24                   android:autoText="false"
       
    25                   android:capitalize="none"
       
    26                   android:minWidth="150dp"
       
    27                   android:scrollHorizontally="true"/>
       
    28     </LinearLayout>
       
    29 
    10 
    30     <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    11 		<EditText android:id="@+id/ac_login" android:layout_width="wrap_content"
    31                   android:orientation="horizontal"
    12 			android:layout_height="wrap_content" android:singleLine="true"
    32                   android:layout_width="fill_parent"
    13 			android:textSize="16sp" android:autoText="false" android:capitalize="none"
    33                   android:layout_height="wrap_content"
    14 			android:minWidth="150dp" android:scrollHorizontally="true" />
    34             >
    15 	</LinearLayout>
    35         <TextView
       
    36                 android:layout_width="wrap_content"
       
    37                 android:layout_height="wrap_content"
       
    38                 android:text="Email:"
       
    39                 android:minWidth="70dp"
       
    40                 />
       
    41         <EditText android:id="@+id/email"
       
    42                   android:layout_width="wrap_content"
       
    43                   android:layout_height="wrap_content"
       
    44                   android:singleLine="true"
       
    45                   android:textSize="16sp"
       
    46                   android:autoText="false"
       
    47                   android:minWidth="250dp"
       
    48                   android:capitalize="none"
       
    49                   android:scrollHorizontally="true"/>
       
    50     </LinearLayout>
       
    51     <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
       
    52                   android:orientation="horizontal"
       
    53                   android:layout_width="fill_parent"
       
    54                   android:layout_height="wrap_content"
       
    55             >
       
    56         <TextView
       
    57                 android:layout_width="wrap_content"
       
    58                 android:layout_height="wrap_content"
       
    59                 android:text="Password:"
       
    60                 android:minWidth="70dp"
       
    61                 />
       
    62         <EditText android:id="@+id/password"
       
    63                   android:layout_width="wrap_content"
       
    64                   android:layout_height="wrap_content"
       
    65                   android:singleLine="true"
       
    66                   android:password="true"
       
    67                   android:textSize="16sp"
       
    68                   android:autoText="false"
       
    69                   android:minWidth="250dp"
       
    70                   android:capitalize="none"
       
    71                   android:scrollHorizontally="true"/>
       
    72     </LinearLayout>
       
    73     <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
       
    74                   android:orientation="horizontal"
       
    75                   android:layout_width="fill_parent"
       
    76                   android:layout_height="wrap_content"
       
    77             >
       
    78         <TextView
       
    79                 android:layout_width="wrap_content"
       
    80                 android:layout_height="wrap_content"
       
    81                 android:text="Repeat:"
       
    82                 android:minWidth="70dp"
       
    83                 />
       
    84         <EditText android:id="@+id/password2"
       
    85                   android:layout_width="wrap_content"
       
    86                   android:layout_height="wrap_content"
       
    87                   android:singleLine="true"
       
    88                   android:password="true"
       
    89                   android:textSize="16sp"
       
    90                   android:autoText="false"
       
    91                   android:minWidth="250dp"
       
    92                   android:capitalize="none"
       
    93                   android:scrollHorizontally="true"/>
       
    94     </LinearLayout>
       
    95 
    16 
    96     <Button android:id="@+id/ok"
    17 	<LinearLayout android:orientation="horizontal"
    97             android:layout_width="wrap_content"
    18 		android:layout_width="fill_parent" android:layout_height="wrap_content">
    98             android:layout_height="wrap_content"
    19 		<TextView android:layout_width="wrap_content"
    99             android:layout_alignParentRight="true"
    20 			android:layout_height="wrap_content" android:text="@string/ACEmail"
   100             android:text="OK">
    21 			android:minWidth="70dp" />
   101         <requestFocus/>
    22 		<EditText android:id="@+id/ac_email" android:layout_width="wrap_content"
   102     </Button>
    23 			android:layout_height="wrap_content" android:singleLine="true"
       
    24 			android:textSize="16sp" android:autoText="false" android:minWidth="250dp"
       
    25 			android:capitalize="none" android:scrollHorizontally="true" />
       
    26 	</LinearLayout>
       
    27 	<LinearLayout android:orientation="horizontal"
       
    28 		android:layout_width="fill_parent" android:layout_height="wrap_content">
       
    29 		<TextView android:layout_width="wrap_content"
       
    30 			android:layout_height="wrap_content" android:text="@string/ACPassword"
       
    31 			android:minWidth="70dp" />
       
    32 		<EditText android:id="@+id/ac_password" android:layout_width="wrap_content"
       
    33 			android:layout_height="wrap_content" android:singleLine="true"
       
    34 			android:password="true" android:textSize="16sp" android:autoText="false"
       
    35 			android:minWidth="250dp" android:capitalize="none"
       
    36 			android:scrollHorizontally="true" />
       
    37 	</LinearLayout>
       
    38 	<LinearLayout android:orientation="horizontal"
       
    39 		android:layout_width="fill_parent" android:layout_height="wrap_content">
       
    40 		<TextView android:layout_width="wrap_content"
       
    41 			android:layout_height="wrap_content" android:text="@string/ACRepeat"
       
    42 			android:minWidth="70dp" />
       
    43 		<EditText android:id="@+id/ac_password2"
       
    44 			android:layout_width="wrap_content" android:layout_height="wrap_content"
       
    45 			android:singleLine="true" android:password="true" android:textSize="16sp"
       
    46 			android:autoText="false" android:minWidth="250dp" android:capitalize="none"
       
    47 			android:scrollHorizontally="true" />
       
    48 	</LinearLayout>
       
    49 
       
    50 	<Button android:id="@+id/ac_ok" android:layout_width="fill_parent"
       
    51 		android:layout_gravity="center_horizontal" android:layout_height="wrap_content"
       
    52 		android:text="@string/ACOkButton">
       
    53 		<requestFocus />
       
    54 	</Button>
   103 </LinearLayout>
    55 </LinearLayout>