res/layout/create_account.xml
author nikita@localhost
Mon, 22 Jun 2009 15:59:18 +0200
changeset 256 35f81983d351
parent 230 21d91ef67e97
child 489 77c573c8217e
permissions -rw-r--r--
Feature #143 Debut de l'implémentation de la feature. D'apres marseille il y a des trucs qui doivent changer au niveau de la connection donc je pause a ce stade la.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
212
bbc0b169cdf0 Issues #124, #67, #88
dasilvj
parents:
diff changeset
     1
<?xml version="1.0" encoding="utf-8"?>
bbc0b169cdf0 Issues #124, #67, #88
dasilvj
parents:
diff changeset
     2
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
256
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
     3
	android:orientation="vertical" android:layout_width="fill_parent"
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
     4
	android:layout_height="fill_parent">
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
     5
	<LinearLayout android:layout_width="fill_parent"
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
     6
		android:layout_height="fill_parent" android:orientation="vertical"
212
bbc0b169cdf0 Issues #124, #67, #88
dasilvj
parents:
diff changeset
     7
		android:padding="10dip">
256
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
     8
		<TextView android:id="@+id/create_account_label_username"
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
     9
			android:layout_width="fill_parent" android:layout_height="wrap_content"
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
    10
			android:text="@string/create_account_username" style="@style/Label" />
212
bbc0b169cdf0 Issues #124, #67, #88
dasilvj
parents:
diff changeset
    11
		<EditText android:id="@+id/create_account_username"
256
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
    12
			android:layout_width="fill_parent" android:layout_height="wrap_content"
230
21d91ef67e97 Bug #166 - Passage des différents EditText de l'activité Settings en SingleLine. Correction d'un bug poussant le champs Port en dehors de la zone de vue dans les tabs Proxy et XMPP.
dasilvj@jean-manuel-da-silvas-macbook.local
parents: 212
diff changeset
    13
			android:singleLine="true" />
256
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
    14
		<TextView android:id="@+id/create_account_label_password"
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
    15
			android:layout_width="fill_parent" android:layout_height="wrap_content"
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
    16
			android:text="@string/create_account_password" style="@style/Label" />
212
bbc0b169cdf0 Issues #124, #67, #88
dasilvj
parents:
diff changeset
    17
		<EditText android:id="@+id/create_account_password"
256
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
    18
			android:layout_width="fill_parent" android:layout_height="wrap_content"
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
    19
			android:password="true" android:singleLine="true" />
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
    20
		<TextView android:id="@+id/create_account_label_confirm_password"
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
    21
			android:layout_width="fill_parent" android:layout_height="wrap_content"
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
    22
			android:text="@string/create_account_confirm_password" style="@style/Label" />
212
bbc0b169cdf0 Issues #124, #67, #88
dasilvj
parents:
diff changeset
    23
		<EditText android:id="@+id/create_account_confirm_password"
256
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
    24
			android:layout_width="fill_parent" android:layout_height="wrap_content"
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
    25
			android:password="true" android:singleLine="true" />
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
    26
		<View android:layout_height="21dp" android:layout_width="fill_parent" />
212
bbc0b169cdf0 Issues #124, #67, #88
dasilvj
parents:
diff changeset
    27
		<Button android:id="@+id/create_account_button"
256
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
    28
			android:layout_width="fill_parent" android:layout_height="fill_parent"
212
bbc0b169cdf0 Issues #124, #67, #88
dasilvj
parents:
diff changeset
    29
			android:text="@string/button_create_account" />
256
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
    30
		<Button android:id="@+id/create_account_login_button"
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
    31
			android:layout_width="fill_parent" android:layout_height="fill_parent"
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
    32
			android:text="@string/button_create_login_account" />
212
bbc0b169cdf0 Issues #124, #67, #88
dasilvj
parents:
diff changeset
    33
	</LinearLayout>
bbc0b169cdf0 Issues #124, #67, #88
dasilvj
parents:
diff changeset
    34
</ScrollView>