res/layout/addcontact.xml
changeset 190 079488da1bfc
parent 136 4cba5e27fcb3
child 317 f930c6558d37
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
     6         >
     6 		android:orientation="horizontal" android:layout_width="fill_parent"
     7     <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     7 		android:layout_height="wrap_content">
     8                   android:orientation="horizontal"
     8 		<TextView android:layout_width="wrap_content"
     9                   android:layout_width="fill_parent"
     9 			android:layout_height="wrap_content" android:text="@string/AddCLogin"
    10                   android:layout_height="wrap_content"
    10 			android:minWidth="70dp" />
    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/AC_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="250dp"
       
    27                   android:scrollHorizontally="true"/>
       
    28     </LinearLayout>
       
    29 
    11 
    30     <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    12 		<EditText android:id="@+id/addc_login" android:layout_width="wrap_content"
    31                   android:orientation="horizontal"
    13 			android:layout_height="wrap_content" android:singleLine="true"
    32                   android:layout_width="fill_parent"
    14 			android:textSize="16sp" android:autoText="false" android:capitalize="none"
    33                   android:layout_height="wrap_content"
    15 			android:minWidth="250dp" android:scrollHorizontally="true" />
    34             >
    16 	</LinearLayout>
    35         <TextView
    17 
    36                 android:layout_width="wrap_content"
    18 	<LinearLayout
    37                 android:layout_height="wrap_content"
    19 		android:orientation="horizontal" android:layout_width="fill_parent"
    38                 android:text="Alias:"
    20 		android:layout_height="wrap_content">
    39                 android:minWidth="70dp"
    21 		<TextView android:layout_width="wrap_content"
    40                 />
    22 			android:layout_height="wrap_content" android:text="@string/AddCAlias"
    41         <EditText android:id="@+id/AC_alias"
    23 			android:minWidth="70dp" />
    42                   android:layout_width="wrap_content"
    24 		<EditText android:id="@+id/addc_alias" android:layout_width="wrap_content"
    43                   android:layout_height="wrap_content"
    25 			android:layout_height="wrap_content" android:singleLine="true"
    44                   android:singleLine="true"
    26 			android:textSize="16sp" android:autoText="false" android:minWidth="250dp"
    45                   android:textSize="16sp"
    27 			android:capitalize="none" android:scrollHorizontally="true" />
    46                   android:autoText="false"
    28 	</LinearLayout>
    47                   android:minWidth="250dp"
    29 	<LinearLayout
    48                   android:capitalize="none"
    30 		android:orientation="horizontal" android:layout_width="fill_parent"
    49                   android:scrollHorizontally="true"/>
    31 		android:layout_height="wrap_content">
    50     </LinearLayout>
    32 		<TextView android:layout_width="wrap_content"
    51     <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    33 			android:layout_height="wrap_content" android:text="@string/AddCGroup"
    52                   android:orientation="horizontal"
    34 			android:minWidth="70dp" />
    53                   android:layout_width="fill_parent"
    35 		<EditText android:id="@+id/addc_group" android:layout_width="wrap_content"
    54                   android:layout_height="wrap_content"
    36 			android:layout_height="wrap_content" android:singleLine="true"
    55             >
    37 			android:textSize="16sp" android:autoText="false" android:minWidth="250dp"
    56         <TextView
    38 			android:capitalize="none" android:scrollHorizontally="true" />
    57                 android:layout_width="wrap_content"
    39 	</LinearLayout>
    58                 android:layout_height="wrap_content"
    40 	<Button android:id="@+id/addc_ok" android:layout_width="fill_parent"
    59                 android:text="Group:"
    41 		android:layout_height="wrap_content" android:layout_gravity="center_horizontal"
    60                 android:minWidth="70dp"
    42 		android:text="@string/AddCOkButton">
    61                 />
    43 		<requestFocus />
    62         <EditText android:id="@+id/AC_group"
    44 	</Button>
    63                   android:layout_width="wrap_content"
       
    64                   android:layout_height="wrap_content"
       
    65                   android:singleLine="true"
       
    66                   android:textSize="16sp"
       
    67                   android:autoText="false"
       
    68                   android:minWidth="250dp"
       
    69                   android:capitalize="none"
       
    70                   android:scrollHorizontally="true"/>
       
    71     </LinearLayout>
       
    72     <Button android:id="@+id/AC_ok"
       
    73             android:layout_width="wrap_content"
       
    74             android:layout_height="wrap_content"
       
    75             android:layout_alignParentRight="true"
       
    76             android:text="OK">
       
    77         <requestFocus/>
       
    78     </Button>
       
    79 </LinearLayout>
    45 </LinearLayout>