res/layout/userinfo.xml
author Vincent Veronis <veroni_v@epitech.net>
Thu, 01 Oct 2009 18:32:03 +0200
changeset 433 6cf10e4b3714
parent 424 489d3728f7b7
permissions -rw-r--r--
Suppression gestion vcard
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
415
164c96b9e98b Mise en place nouvelle activite user info.
Vincent Veronis <veroni_v@epitech.net>
parents:
diff changeset
     1
<?xml version="1.0" encoding="utf-8"?>
423
32d2c5840a8c Ajout de la layout vcard
Vincent Veronis <veroni_v@epitech.net>
parents: 416
diff changeset
     2
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
415
164c96b9e98b Mise en place nouvelle activite user info.
Vincent Veronis <veroni_v@epitech.net>
parents:
diff changeset
     3
	android:orientation="vertical" android:layout_width="fill_parent"
164c96b9e98b Mise en place nouvelle activite user info.
Vincent Veronis <veroni_v@epitech.net>
parents:
diff changeset
     4
	android:layout_height="fill_parent">
423
32d2c5840a8c Ajout de la layout vcard
Vincent Veronis <veroni_v@epitech.net>
parents: 416
diff changeset
     5
	<LinearLayout android:orientation="vertical"
32d2c5840a8c Ajout de la layout vcard
Vincent Veronis <veroni_v@epitech.net>
parents: 416
diff changeset
     6
		android:layout_width="fill_parent" android:layout_height="wrap_content">
32d2c5840a8c Ajout de la layout vcard
Vincent Veronis <veroni_v@epitech.net>
parents: 416
diff changeset
     7
		<LinearLayout android:id="@+id/userinfo_layout_alias"
32d2c5840a8c Ajout de la layout vcard
Vincent Veronis <veroni_v@epitech.net>
parents: 416
diff changeset
     8
			android:orientation="vertical" android:layout_width="fill_parent"
424
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
     9
			android:layout_height="70px">
423
32d2c5840a8c Ajout de la layout vcard
Vincent Veronis <veroni_v@epitech.net>
parents: 416
diff changeset
    10
			<TextView android:layout_width="fill_parent"
32d2c5840a8c Ajout de la layout vcard
Vincent Veronis <veroni_v@epitech.net>
parents: 416
diff changeset
    11
				android:layout_height="wrap_content" android:paddingLeft="20sp"
32d2c5840a8c Ajout de la layout vcard
Vincent Veronis <veroni_v@epitech.net>
parents: 416
diff changeset
    12
				android:singleLine="true" android:maxLines="1" android:textSize="30px"
32d2c5840a8c Ajout de la layout vcard
Vincent Veronis <veroni_v@epitech.net>
parents: 416
diff changeset
    13
				android:text="@string/userinfo_label_alias" />
32d2c5840a8c Ajout de la layout vcard
Vincent Veronis <veroni_v@epitech.net>
parents: 416
diff changeset
    14
			<TextView android:id="@+id/userinfo_alias"
32d2c5840a8c Ajout de la layout vcard
Vincent Veronis <veroni_v@epitech.net>
parents: 416
diff changeset
    15
				android:layout_width="fill_parent" android:layout_height="wrap_content"
32d2c5840a8c Ajout de la layout vcard
Vincent Veronis <veroni_v@epitech.net>
parents: 416
diff changeset
    16
				android:paddingLeft="20sp" android:singleLine="true" />
32d2c5840a8c Ajout de la layout vcard
Vincent Veronis <veroni_v@epitech.net>
parents: 416
diff changeset
    17
		</LinearLayout>
32d2c5840a8c Ajout de la layout vcard
Vincent Veronis <veroni_v@epitech.net>
parents: 416
diff changeset
    18
		<View android:layout_height="1px" android:layout_width="fill_parent"
32d2c5840a8c Ajout de la layout vcard
Vincent Veronis <veroni_v@epitech.net>
parents: 416
diff changeset
    19
			android:background="#FFFFFF" />
32d2c5840a8c Ajout de la layout vcard
Vincent Veronis <veroni_v@epitech.net>
parents: 416
diff changeset
    20
		<LinearLayout android:id="@+id/userinfo_layout_chg_group"
32d2c5840a8c Ajout de la layout vcard
Vincent Veronis <veroni_v@epitech.net>
parents: 416
diff changeset
    21
			android:orientation="vertical" android:layout_width="fill_parent"
424
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
    22
			android:layout_height="70px">
423
32d2c5840a8c Ajout de la layout vcard
Vincent Veronis <veroni_v@epitech.net>
parents: 416
diff changeset
    23
			<TextView android:layout_width="fill_parent"
32d2c5840a8c Ajout de la layout vcard
Vincent Veronis <veroni_v@epitech.net>
parents: 416
diff changeset
    24
				android:layout_height="wrap_content" android:paddingLeft="20sp"
32d2c5840a8c Ajout de la layout vcard
Vincent Veronis <veroni_v@epitech.net>
parents: 416
diff changeset
    25
				android:singleLine="true" android:maxLines="1" android:textSize="30px"
32d2c5840a8c Ajout de la layout vcard
Vincent Veronis <veroni_v@epitech.net>
parents: 416
diff changeset
    26
				android:text="@string/userinfo_label_chg_group" />
32d2c5840a8c Ajout de la layout vcard
Vincent Veronis <veroni_v@epitech.net>
parents: 416
diff changeset
    27
			<Gallery android:id="@+id/userinfo_groups"
32d2c5840a8c Ajout de la layout vcard
Vincent Veronis <veroni_v@epitech.net>
parents: 416
diff changeset
    28
				android:layout_width="fill_parent" android:layout_height="wrap_content"
32d2c5840a8c Ajout de la layout vcard
Vincent Veronis <veroni_v@epitech.net>
parents: 416
diff changeset
    29
				android:spacing="10px" />
32d2c5840a8c Ajout de la layout vcard
Vincent Veronis <veroni_v@epitech.net>
parents: 416
diff changeset
    30
		</LinearLayout>
32d2c5840a8c Ajout de la layout vcard
Vincent Veronis <veroni_v@epitech.net>
parents: 416
diff changeset
    31
		<View android:layout_height="1px" android:layout_width="fill_parent"
32d2c5840a8c Ajout de la layout vcard
Vincent Veronis <veroni_v@epitech.net>
parents: 416
diff changeset
    32
			android:background="#FFFFFF" />
424
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
    33
		<LinearLayout android:id="@+id/userinfo_layout_re_suscription"
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
    34
			android:orientation="vertical" android:layout_width="fill_parent"
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
    35
			android:layout_height="70px">
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
    36
			<TextView android:layout_width="fill_parent"
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
    37
				android:layout_height="wrap_content" android:paddingLeft="20sp"
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
    38
				android:singleLine="true" android:maxLines="1" android:textSize="30px"
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
    39
				android:text="@string/userinfo_label_re_suscription" />
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
    40
		</LinearLayout>
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
    41
		<View android:layout_height="1px" android:layout_width="fill_parent"
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
    42
			android:background="#FFFFFF" />
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
    43
		<LinearLayout android:id="@+id/userinfo_layout_block"
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
    44
			android:orientation="vertical" android:layout_width="fill_parent"
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
    45
			android:layout_height="70px">
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
    46
			<TextView android:layout_width="fill_parent"
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
    47
				android:layout_height="wrap_content" android:paddingLeft="20sp"
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
    48
				android:singleLine="true" android:maxLines="1" android:textSize="30px"
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
    49
				android:text="@string/userinfo_label_block" />
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
    50
		</LinearLayout>
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
    51
		<View android:layout_height="1px" android:layout_width="fill_parent"
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
    52
			android:background="#FFFFFF" />
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
    53
		<LinearLayout android:id="@+id/userinfo_layout_delete"
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
    54
			android:orientation="vertical" android:layout_width="fill_parent"
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
    55
			android:layout_height="70px">
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
    56
			<TextView android:layout_width="fill_parent"
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
    57
				android:layout_height="wrap_content" android:paddingLeft="20sp"
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
    58
				android:singleLine="true" android:maxLines="1" android:textSize="30px"
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
    59
				android:text="@string/userinfo_label_delete" />
489d3728f7b7 Ajustement des layouts a une taille fixe commune
Vincent Veronis <veroni_v@epitech.net>
parents: 423
diff changeset
    60
		</LinearLayout>
423
32d2c5840a8c Ajout de la layout vcard
Vincent Veronis <veroni_v@epitech.net>
parents: 416
diff changeset
    61
	</LinearLayout>
32d2c5840a8c Ajout de la layout vcard
Vincent Veronis <veroni_v@epitech.net>
parents: 416
diff changeset
    62
</ScrollView>