res/layout/create_account.xml
author Nikita Kozlov <nikita@elyzion.net>
Mon, 23 Jan 2012 17:35:54 +0100
changeset 954 afff9e2452d9
parent 952 0867bf998775
child 986 2c85a0f62ab0
permissions -rw-r--r--
update version name and code version
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"
506
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: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
     6
		android:layout_width="fill_parent" android:layout_height="fill_parent"
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"
489
77c573c8217e some improvements about input methods
Da Risk <darisk972@gmail.com>
parents: 256
diff changeset
    12
			android:inputType="textEmailAddress" android:imeOptions="actionNext"
256
35f81983d351 Feature #143
nikita@localhost
parents: 230
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:singleLine="true"
950
364045ee3d8e add an hint about account jid
Nikita Kozlov <nikita@elyzion.net>
parents: 767
diff changeset
    15
			android:hint="beem@beem-project.com "
767
74a987c3efb5 Add properties needed for accessibility.
Nolan Darilek <nolan@thewordnerd.info>
parents: 506
diff changeset
    16
			android:contentDescription="@string/create_account_username"/>
256
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
    17
		<TextView android:id="@+id/create_account_label_password"
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:text="@string/create_account_password" style="@style/Label" />
212
bbc0b169cdf0 Issues #124, #67, #88
dasilvj
parents:
diff changeset
    20
		<EditText android:id="@+id/create_account_password"
256
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
    21
			android:layout_width="fill_parent" android:layout_height="wrap_content"
489
77c573c8217e some improvements about input methods
Da Risk <darisk972@gmail.com>
parents: 256
diff changeset
    22
			android:inputType="textPassword" android:imeOptions="actionNext"
767
74a987c3efb5 Add properties needed for accessibility.
Nolan Darilek <nolan@thewordnerd.info>
parents: 506
diff changeset
    23
			android:password="true" android:singleLine="true"
74a987c3efb5 Add properties needed for accessibility.
Nolan Darilek <nolan@thewordnerd.info>
parents: 506
diff changeset
    24
			android:contentDescription="@string/create_account_password"/>
256
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
    25
		<TextView android:id="@+id/create_account_label_confirm_password"
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
    26
			android:layout_width="fill_parent" android:layout_height="wrap_content"
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
    27
			android:text="@string/create_account_confirm_password" style="@style/Label" />
212
bbc0b169cdf0 Issues #124, #67, #88
dasilvj
parents:
diff changeset
    28
		<EditText android:id="@+id/create_account_confirm_password"
256
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
    29
			android:layout_width="fill_parent" android:layout_height="wrap_content"
489
77c573c8217e some improvements about input methods
Da Risk <darisk972@gmail.com>
parents: 256
diff changeset
    30
			android:inputType="textPassword" android:imeOptions="actionNext"
767
74a987c3efb5 Add properties needed for accessibility.
Nolan Darilek <nolan@thewordnerd.info>
parents: 506
diff changeset
    31
			android:password="true" android:singleLine="true"
74a987c3efb5 Add properties needed for accessibility.
Nolan Darilek <nolan@thewordnerd.info>
parents: 506
diff changeset
    32
			android:contentDescription="@string/create_account_confirm_password"/>
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
		<View android:layout_width="fill_parent" android:layout_height="wrap_content"
8e33a89c21a3 Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 489
diff changeset
    34
			android:layout_weight="1" android:layout_marginBottom="18dp" />
212
bbc0b169cdf0 Issues #124, #67, #88
dasilvj
parents:
diff changeset
    35
		<Button android:id="@+id/create_account_button"
506
8e33a89c21a3 Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 489
diff changeset
    36
			android:layout_width="fill_parent" android:layout_height="wrap_content"
952
0867bf998775 doesn't force color to handle correctly devices with dark button background.
Nikita Kozlov <nikita@elyzion.net>
parents: 950
diff changeset
    37
			android:text="@string/button_create_account"
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
			android:layout_gravity="bottom" />
256
35f81983d351 Feature #143
nikita@localhost
parents: 230
diff changeset
    39
		<Button android:id="@+id/create_account_login_button"
506
8e33a89c21a3 Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 489
diff changeset
    40
			android:layout_width="fill_parent" android:layout_height="wrap_content"
952
0867bf998775 doesn't force color to handle correctly devices with dark button background.
Nikita Kozlov <nikita@elyzion.net>
parents: 950
diff changeset
    41
			android:text="@string/button_create_login_account"
506
8e33a89c21a3 Homogeneisation de l'UI et correction de certains bugs d'affichage
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 489
diff changeset
    42
			android:layout_gravity="bottom" />
212
bbc0b169cdf0 Issues #124, #67, #88
dasilvj
parents:
diff changeset
    43
	</LinearLayout>
bbc0b169cdf0 Issues #124, #67, #88
dasilvj
parents:
diff changeset
    44
</ScrollView>