res/layout/addcontact.xml
author Da Risk <da_risk@beem-project.com>
Wed, 27 Feb 2013 10:27:32 +0100
changeset 1023 d9a3b8cf456e
parent 981 e1b1c8ad710a
permissions -rw-r--r--
Bump version. Firs release candidate of 0.1.8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
132
728adc0feb4e debut du addcontact
nikita@nikita-rack
parents:
diff changeset
     1
<?xml version="1.0" encoding="utf-8"?>
506
8e33a89c21a3 Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 489
diff changeset
     2
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
8e33a89c21a3 Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 489
diff changeset
     3
	android:layout_width="fill_parent" android:layout_height="fill_parent"
8e33a89c21a3 Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 489
diff changeset
     4
	android:orientation="vertical">
8e33a89c21a3 Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 489
diff changeset
     5
	<LinearLayout android:layout_width="fill_parent"
981
e1b1c8ad710a Use the theme text appearance for most labels.
Da Risk <da_risk@beem-project.com>
parents: 952
diff changeset
     6
		android:layout_height="wrap_content" android:orientation="vertical"
506
8e33a89c21a3 Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 489
diff changeset
     7
		android:padding="10dip">
8e33a89c21a3 Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 489
diff changeset
     8
		<TextView android:layout_width="fill_parent"
8e33a89c21a3 Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 489
diff changeset
     9
			android:layout_height="wrap_content" android:text="@string/AddCLogin"
8e33a89c21a3 Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 489
diff changeset
    10
			style="@style/Label" />
8e33a89c21a3 Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 489
diff changeset
    11
		<EditText android:id="@+id/addc_login" android:inputType="textEmailAddress"
8e33a89c21a3 Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 489
diff changeset
    12
			android:imeOptions="actionNext" android:scrollHorizontally="true"
8e33a89c21a3 Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 489
diff changeset
    13
			android:layout_width="fill_parent" android:layout_height="wrap_content"
767
74a987c3efb5 Add properties needed for accessibility.
Nolan Darilek <nolan@thewordnerd.info>
parents: 506
diff changeset
    14
			android:layout_margin="3dip"
74a987c3efb5 Add properties needed for accessibility.
Nolan Darilek <nolan@thewordnerd.info>
parents: 506
diff changeset
    15
			android:contentDescription="@string/AddCLogin"/>
506
8e33a89c21a3 Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 489
diff changeset
    16
		<TextView android:layout_width="fill_parent"
8e33a89c21a3 Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 489
diff changeset
    17
			android:layout_height="wrap_content" android:text="@string/AddCAlias"
8e33a89c21a3 Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 489
diff changeset
    18
			style="@style/Label" />
8e33a89c21a3 Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 489
diff changeset
    19
		<EditText android:id="@+id/addc_alias" android:inputType="text"
981
e1b1c8ad710a Use the theme text appearance for most labels.
Da Risk <da_risk@beem-project.com>
parents: 952
diff changeset
    20
			android:imeOptions="actionNext"
506
8e33a89c21a3 Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 489
diff changeset
    21
			android:layout_width="fill_parent" android:layout_height="wrap_content"
767
74a987c3efb5 Add properties needed for accessibility.
Nolan Darilek <nolan@thewordnerd.info>
parents: 506
diff changeset
    22
			android:scrollHorizontally="true" android:layout_margin="3dip"
74a987c3efb5 Add properties needed for accessibility.
Nolan Darilek <nolan@thewordnerd.info>
parents: 506
diff changeset
    23
			android:contentDescription="@string/AddCAlias"/>
506
8e33a89c21a3 Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 489
diff changeset
    24
		<TextView android:layout_width="fill_parent"
8e33a89c21a3 Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 489
diff changeset
    25
			android:layout_height="wrap_content" android:text="@string/AddCGroup"
8e33a89c21a3 Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 489
diff changeset
    26
			style="@style/Label" />
8e33a89c21a3 Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 489
diff changeset
    27
		<EditText android:id="@+id/addc_group" android:inputType="text"
981
e1b1c8ad710a Use the theme text appearance for most labels.
Da Risk <da_risk@beem-project.com>
parents: 952
diff changeset
    28
			android:layout_width="fill_parent"
506
8e33a89c21a3 Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 489
diff changeset
    29
			android:scrollHorizontally="true" android:layout_height="wrap_content"
767
74a987c3efb5 Add properties needed for accessibility.
Nolan Darilek <nolan@thewordnerd.info>
parents: 506
diff changeset
    30
			android:layout_margin="3dip"
74a987c3efb5 Add properties needed for accessibility.
Nolan Darilek <nolan@thewordnerd.info>
parents: 506
diff changeset
    31
			android:contentDescription="@string/AddCGroup"/>
981
e1b1c8ad710a Use the theme text appearance for most labels.
Da Risk <da_risk@beem-project.com>
parents: 952
diff changeset
    32
		<View android:layout_width="fill_parent" android:layout_height="0dp"
506
8e33a89c21a3 Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 489
diff changeset
    33
			android:layout_weight="1" android:layout_marginBottom="18dp" />
8e33a89c21a3 Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 489
diff changeset
    34
		<Button android:id="@+id/addc_ok" android:layout_width="fill_parent"
952
0867bf998775 doesn't force color to handle correctly devices with dark button background.
Nikita Kozlov <nikita@elyzion.net>
parents: 767
diff changeset
    35
			android:layout_height="wrap_content"
981
e1b1c8ad710a Use the theme text appearance for most labels.
Da Risk <da_risk@beem-project.com>
parents: 952
diff changeset
    36
			android:textAppearance="?android:attr/textAppearanceMedium"
952
0867bf998775 doesn't force color to handle correctly devices with dark button background.
Nikita Kozlov <nikita@elyzion.net>
parents: 767
diff changeset
    37
			android:text="@string/AddCOkButton" android:layout_gravity="bottom" />
506
8e33a89c21a3 Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 489
diff changeset
    38
	</LinearLayout>
8e33a89c21a3 Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 489
diff changeset
    39
</ScrollView>